Skip to content

Commit

Permalink
Corrige build.gradle não necessitando chaves obrigatorias em outras t…
Browse files Browse the repository at this point in the history
…asks do gradle
  • Loading branch information
ericdallo committed Apr 8, 2017
1 parent bdb502b commit 2983d7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ eclipse {
}

bintray {
user = "${bintray_user}"
key = "${bintray_key}"
user = System.getProperty("bintray_user")
key = System.getProperty("bintray_key")
configurations = ['archives']
pkg {
repo = 'correios-java-sdk'
Expand Down

0 comments on commit 2983d7a

Please sign in to comment.