-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
67 lines (59 loc) · 1.9 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
plugins {
kotlin("jvm") version "1.8.22"
kotlin("plugin.serialization") version "1.8.22"
id("net.mamoe.mirai-console") version "2.16.0"
id("me.him188.maven-central-publish") version "1.0.0"
}
group = "io.github.gnuf0rce"
version = "1.5.0"
mavenCentralPublish {
useCentralS01()
singleDevGithubProject("gnuf0rce", "github-helper", "cssxsh")
licenseFromGitHubProject("AGPL-3.0")
workingDir = System.getenv("PUBLICATION_TEMP")?.let { file(it).resolve(projectName) }
?: buildDir.resolve("publishing-tmp")
publication {
artifact(tasks["buildPlugin"])
}
}
repositories {
mavenCentral()
}
dependencies {
compileOnly("xyz.cssxsh.mirai:mirai-selenium-plugin:2.6.0")
compileOnly("xyz.cssxsh.mirai:mirai-administrator:1.4.3")
testImplementation(kotlin("test"))
testImplementation("xyz.cssxsh.mirai:mirai-selenium-plugin:2.6.0")
//
implementation(platform("net.mamoe:mirai-bom:2.16.0"))
compileOnly("net.mamoe:mirai-console-compiler-common")
testImplementation("net.mamoe:mirai-core-mock")
testImplementation("net.mamoe:mirai-logging-slf4j")
//
implementation(platform("io.ktor:ktor-bom:2.3.10"))
implementation("io.ktor:ktor-client-okhttp")
implementation("io.ktor:ktor-client-encoding")
implementation("io.ktor:ktor-client-auth")
implementation("io.ktor:ktor-client-content-negotiation")
implementation("io.ktor:ktor-serialization-kotlinx-json")
//
implementation(platform("com.squareup.okhttp3:okhttp-bom:4.12.0"))
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps")
//
implementation(platform("org.slf4j:slf4j-parent:2.0.13"))
testImplementation("org.slf4j:slf4j-simple")
}
mirai {
jvmTarget = JavaVersion.VERSION_11
if (System.getenv("CI").toBoolean()) {
useTestConsoleFrontEnd = null
}
}
kotlin {
explicitApi()
}
tasks {
test {
useJUnitPlatform()
}
}