We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75bcda2 commit c08dcbdCopy full SHA for c08dcbd
build.gradle.kts
@@ -18,6 +18,7 @@ plugins {
18
id("com.google.cloud.tools.jib") version "2.0.0"
19
id("com.github.johnrengelman.shadow") version "5.2.0"
20
id("net.researchgate.release") version "2.8.1"
21
+ id("io.codearte.nexus-staging") version "0.21.2"
22
`java-library`
23
`maven-publish`
24
signing
@@ -56,6 +57,12 @@ dependencies {
56
57
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion")
58
}
59
60
+nexusStaging {
61
+ username = System.getenv("SONATYPE_USERNAME")
62
+ password = System.getenv("SONATYPE_PASSWORD")
63
+ packageGroup = "no.nav"
64
+}
65
+
66
publishing {
67
publications {
68
create<MavenPublication>("mavenJava") {
0 commit comments