-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
69 lines (59 loc) · 1.89 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
68
69
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
java
`maven-publish`
id("org.jetbrains.kotlin.jvm") version "1.8.22" apply false
id("org.tabooproject.shrinkingkt") version "1.0.6" apply false
}
subprojects {
apply(plugin = "java-library")
apply(plugin = "maven-publish")
apply(plugin = "org.jetbrains.kotlin.jvm")
apply(plugin = "org.tabooproject.shrinkingkt")
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
"implementation"(kotlin("stdlib"))
"testRuntimeOnly"("org.junit.jupiter:junit-jupiter-engine:5.8.1")
"testImplementation"("org.junit.jupiter:junit-jupiter-api:5.8.1")
}
java {
withSourcesJar()
}
configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.withType<Test> {
useJUnitPlatform()
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
options.compilerArgs.addAll(listOf("-XDenableSunApiLintControl"))
}
tasks.withType<KotlinCompile> {
kotlinOptions.freeCompilerArgs += listOf("-module-name", "${project.group}.${project.name}")
}
publishing {
repositories {
maven("http://sacredcraft.cn:8081/repository/releases") {
isAllowInsecureProtocol = true
credentials {
username = project.findProperty("taboolibUsername").toString()
password = project.findProperty("taboolibPassword").toString()
}
authentication {
create<BasicAuthentication>("basic")
}
}
mavenLocal()
}
publications {
create<MavenPublication>("maven") {
from(components.findByName("java"))
}
}
}
}