tangled
alpha
login
or
join now
nayrid.com
/
checks
0
fork
atom
checkstyle checks
java
checkstyle
0
fork
atom
overview
issues
pulls
pipelines
chore: publishing
kokirigla.de
1 month ago
358cee7d
0b912355
verified
This commit was signed with the committer's
known signature
.
kokirigla.de
SSH Key Fingerprint:
SHA256:BlSEtD3ZoKT3iKveofI8gba+lZ9CEolKRM1Pzy3pAwg=
+8
-12
1 changed file
expand all
collapse all
unified
split
build-logic
src
main
kotlin
publishing-conventions.gradle.kts
+8
-12
build-logic/src/main/kotlin/publishing-conventions.gradle.kts
···
1
1
plugins {
2
2
id("base-conventions")
3
3
-
`maven-publish`
3
3
+
id("net.kyori.indra.publishing")
4
4
+
}
5
5
+
6
6
+
indra {
7
7
+
publishSnapshotsTo("nayrid", "https://repo.nayrid.com/snapshots")
8
8
+
publishReleasesTo("nayrid", "https://repo.nayrid.com/releases")
4
9
}
5
10
6
11
tasks {
···
11
16
encoding = Charsets.UTF_8.name()
12
17
links(
13
18
"https://docs.oracle.com/en/java/javase/25/docs/api/",
19
19
+
"https://jspecify.dev/docs/api/",
20
20
+
"https://checkstyle.org/apidocs/",
14
21
)
15
22
}
16
23
}
17
24
}
18
25
}
19
19
-
20
20
-
configure<PublishingExtension> {
21
21
-
publications {
22
22
-
register<MavenPublication>("maven") {
23
23
-
from(components["java"])
24
24
-
}
25
25
-
}
26
26
-
repositories {
27
27
-
mavenLocal()
28
28
-
}
29
29
-
}