Skip to content

Commit

Permalink
Prepare for 3.0.2 release
Browse files Browse the repository at this point in the history
Remove "-SNAPSHOT" logic, as it's incompatible with new CI strategy.
  • Loading branch information
dnault committed Sep 18, 2018
1 parent 9e0d2f0 commit 3382d36
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ defaultTasks 'clean', 'buildAll'
apply plugin: 'java'

def baseVersion = '3.0.2'
def snapshot = true

def branch = 'cypress'

Expand Down Expand Up @@ -54,7 +53,7 @@ if (!project.hasProperty("elasticsearchVersion")) {
}

group = 'com.couchbase'
version = baseVersion + "-" + branch + "-es" + ext.elasticsearchVersion + (snapshot ? "-SNAPSHOT" : "")
version = baseVersion + "-" + branch + "-es" + ext.elasticsearchVersion

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down

0 comments on commit 3382d36

Please sign in to comment.