Skip to content

Commit

Permalink
Default values for bintray auth properties
Browse files Browse the repository at this point in the history
  • Loading branch information
pengrad committed Apr 29, 2017
1 parent 73ab699 commit a328670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload-jcenter.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ group = 'com.github.pengrad'
version = '1.2.1'

bintray {
user = BINTRAY_USER
key = BINTRAY_KEY
user = hasProperty('BINTRAY_USER') ? BINTRAY_USER : ""
key = hasProperty('BINTRAY_KEY') ? BINTRAY_KEY : ""
pkg {
repo = 'maven'
name = 'mapscaleview'
Expand Down

0 comments on commit a328670

Please sign in to comment.