Correct group, artifact and version id

This commit is contained in:
Justin Abrahms 2022-04-27 16:06:01 -07:00
parent 2060c3b28f
commit 4cf9dfccae
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,8 @@ plugins {
id 'maven-publish'
}
group = 'dev.open-feature'
pmd {
pmdTest.enabled = false
}
@ -55,6 +57,8 @@ publishing {
}
publications {
gpr(MavenPublication) {
artifactId = 'javasdk'
version = '0.0.1' + (Boolean.valueOf(System.getProperty("snapshot")) ? "-SNAPSHOT" : "")
from(components.java)
}
}