-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
93 lines (76 loc) · 1.59 KB
/
build.gradle
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
plugins {
id("java")
id("maven-publish")
id("signing")
id("net.auoeke.gronk").version("3.+")
}
version("0.6.0")
description("Properties with structure and types")
javaVersion(17)
allprojects {
plugins.apply("java")
group("net.auoeke")
jar {
from("LICENSE.md") {
into("META-INF")
}
}
}
gronk {
uncheck()
}
sourceSets {
test {
resources.srcDir("test")
}
}
dependencies {
implementation("net.auoeke:reflect")
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
compileJava {
// "package %s does not exist"
// "cannot find symbol class %s"
// Somewhy clean fixes these errors.
dependsOn(clean)
}
compileTestJava {
sourceCompatibility = targetCompatibility = 19
options.compilerArgs << "--enable-preview"
}
test {
useJUnitPlatform()
}
java {
withJavadocJar()
}
publishing {
repositories {
maven(findProperty("maven.repository")) {
username(findProperty("maven.username"))
password(findProperty("maven.password"))
}
}
publications.withType(MavenPublication) {
pom {
url.set("https://github.com/auoeke/structured-properties")
licenses {
license {
url.set("https://raw.githubusercontent.com/auoeke/gronk/master/LICENSE")
}
}
developers {
developer {
id.set("auoeke")
email.set("[email protected]")
}
}
scm {
connection.set("scm:git:git://github.com/auoeke/structured-properties.git")
developerConnection.set("scm:git:git://github.com/auoeke/structured-properties.git")
url.set("https://github.com/auoeke/structured-properties/tree/master")
}
}
}
}