Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
btkelly committed Oct 29, 2019
1 parent 94f5be1 commit 0f57930
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions plugin/bintray.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ publishing {
bintray {
dryRun = false
publish = true
user = project.hasProperty('bintray_user') ? project.property('bintray_user') : System.getenv('BINTRAY_USER')
key = project.hasProperty('bintray_key') ? project.property('bintray_key') : System.getenv('BINTRAY_KEY')
user = project.hasProperty('BINTRAY_USER') ? project.property('BINTRAY_USER') : System.getenv('BINTRAY_USER')
key = project.hasProperty('BINTRAY_API_KEY') ? project.property('BINTRAY_API_KEY') : System.getenv('BINTRAY_API_KEY')
publications = ['GnagPublication']
pkg {
repo = 'maven'
Expand Down
2 changes: 1 addition & 1 deletion version.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project.ext.gnagPluginVersion = '2.3.0'
project.ext.gnagPluginVersion = '2.4.0'
project.ext.gnagPackageId = 'com.btkelly.gnag'
project.ext.gnagArtifactId = 'gnag'
project.ext.gnagPluginName = 'gnag-gradle-plugin'
Expand Down

0 comments on commit 0f57930

Please sign in to comment.