Skip to content

Commit

Permalink
fix: versioning fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
augi committed Mar 22, 2021
1 parent 53aaeb8 commit a8731a0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ nexusPublishing {
}
}

allprojects {
group = 'com.avast.clients.storage'
version = version == 'unspecified' ? 'DEVELOPER-SNAPSHOT' : version
}

subprojects {
apply plugin: 'java'
apply plugin: 'scala'
Expand All @@ -39,9 +44,6 @@ subprojects {
mavenCentral()
}

group = 'com.avast.clients.storage'
version = version == 'unspecified' ? 'DEVELOPER-SNAPSHOT' : version

jar {
manifest {
attributes 'Implementation-Version': archiveVersion
Expand Down

0 comments on commit a8731a0

Please sign in to comment.