-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
66 lines (55 loc) · 1.5 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
plugins {
id("java")
id("java-library")
id("maven-publish")
}
allprojects {
apply(plugin = "java")
apply(plugin = "java-library")
apply(plugin = "maven-publish")
group = "org.inksnow.cputil"
version = System.getenv("BUILD_NUMBER")
?.let { "1.$it" }
?: "1.0-SNAPSHOT"
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
}
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
if (rootProject == project) {
artifactId = "core"
}
from(components["java"])
}
}
repositories {
if (System.getenv("CI").toBoolean()) {
maven("https://s0.blobs.inksnow.org/maven/") {
credentials {
username = System.getenv("IREPO_USERNAME")
password = System.getenv("IREPO_PASSWORD")
}
}
} else {
maven(rootProject.buildDir.resolve("repo"))
}
}
}
tasks.test {
useJUnitPlatform()
}
}
dependencies {
api("org.ow2.asm:asm:9.7")
api("org.slf4j:slf4j-api:1.7.36")
}