Skip to content

Commit

Permalink
Update build.gradle.kts
Browse files Browse the repository at this point in the history
  • Loading branch information
guimc233 authored Jul 26, 2024
1 parent c2ca182 commit 47b1258
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,22 @@ plugins {
kotlin("jvm") version kotlinVersion
kotlin("plugin.serialization") version kotlinVersion

id("net.mamoe.mirai-console") version "2.13.2"
id("net.mamoe.mirai-console") version "2.16.0"
}

group = "org.example"
group = "ltd.guimc.lgzbot.wynn"
version = "0.1.0"

dependencies {
val overflow_version = "2.16.0-db61867-SNAPSHOT"
implementation(kotlin("stdlib"))

compileOnly("top.mrxiaom:overflow-core-api:$overflow_version")
compileOnly("top.mrxiaom:overflow-core:$overflow_version")

implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
}

repositories {
if (System.getenv("CI")?.toBoolean() != true) {
maven("https://maven.aliyun.com/repository/public") // 阿里云国内代理仓库
Expand Down

0 comments on commit 47b1258

Please sign in to comment.