checkstyle checks
java checkstyle

chore: publishing

kokirigla.de 358cee7d 0b912355

verified
+8 -12
+8 -12
build-logic/src/main/kotlin/publishing-conventions.gradle.kts
··· 1 1 plugins { 2 2 id("base-conventions") 3 - `maven-publish` 3 + id("net.kyori.indra.publishing") 4 + } 5 + 6 + indra { 7 + publishSnapshotsTo("nayrid", "https://repo.nayrid.com/snapshots") 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 + "https://jspecify.dev/docs/api/", 20 + "https://checkstyle.org/apidocs/", 14 21 ) 15 22 } 16 23 } 17 24 } 18 25 } 19 - 20 - configure<PublishingExtension> { 21 - publications { 22 - register<MavenPublication>("maven") { 23 - from(components["java"]) 24 - } 25 - } 26 - repositories { 27 - mavenLocal() 28 - } 29 - }