-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
62 lines (52 loc) · 1.4 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
plugins {
id("java")
id("java-library")
id("maven-publish")
}
var versionStr = System.getenv("GIT_COMMIT") ?: "dev"
group = "net.mangolise"
version = versionStr
repositories {
mavenCentral()
}
dependencies {
compileOnly("net.minestom:minestom-snapshots:d0754f2a15")
testImplementation("net.minestom:minestom-snapshots:d0754f2a15")
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
}
tasks.test {
useJUnitPlatform()
}
java {
withSourcesJar()
}
publishing {
repositories {
maven {
name = "serbleMaven"
url = uri("https://maven.serble.net/snapshots/")
credentials {
username = System.getenv("SERBLE_REPO_USERNAME")?:""
password = System.getenv("SERBLE_REPO_PASSWORD")?:""
}
authentication {
create<BasicAuthentication>("basic")
}
}
}
publications {
create<MavenPublication>("mavenGitCommit") {
groupId = "net.mangolise"
artifactId = "mango-combat"
version = versionStr
from(components["java"])
}
create<MavenPublication>("mavenLatest") {
groupId = "net.mangolise"
artifactId = "mango-combat"
version = "latest"
from(components["java"])
}
}
}