-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
78 lines (67 loc) · 2.31 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
70
71
72
73
74
75
76
77
78
plugins {
`java-library`
`maven-publish`
}
allprojects {
group = "cc.dreamcode"
version = "1.5.1"
apply(plugin = "java-library")
apply(plugin = "maven-publish")
repositories {
/* Libraries */
mavenCentral()
maven("https://repo.dreamcode.cc/releases")
maven("https://storehouse.okaeri.eu/repository/maven-public")
}
}
subprojects {
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
}
dependencies {
/* General */
val lombok = "1.18.34"
compileOnly("org.projectlombok:lombok:$lombok")
annotationProcessor("org.projectlombok:lombok:$lombok")
testCompileOnly("org.projectlombok:lombok:$lombok")
testAnnotationProcessor("org.projectlombok:lombok:$lombok")
}
publishing {
repositories {
maven {
if (version.toString().endsWith("-SNAPSHOT")) {
name = "snapshots"
url = uri("https://repo.dreamcode.cc/snapshots")
} else {
name = "releases"
url = uri("https://repo.dreamcode.cc/releases")
}
credentials {
username = System.getenv("MAVEN_USERNAME")
password = System.getenv("MAVEN_TOKEN")
}
}
}
publications {
create<MavenPublication>("library") {
from(components.getByName("java"))
pom.withXml {
val repositories = asNode().appendNode("repositories")
project.repositories.findAll(closureOf<Any> {
if (this is MavenArtifactRepository && this.url.toString().startsWith("https")) {
val repository = repositories.appendNode("repository")
repository.appendNode("id", this.url.toString().replace("https://", "").replace("/", "-").replace(".", "-").trim())
repository.appendNode("url", this.url.toString().trim())
}
})
}
}
}
}
}