Skip to content

Commit

Permalink
Add POM to upload files
Browse files Browse the repository at this point in the history
  • Loading branch information
markusgursch-aaa committed Jun 14, 2019
1 parent fed6b0d commit 0c75aa2
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions inappupdater/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {


group = 'at.allaboutapps.inappupdater'
version = '1.0.4'
version = '1.0.5'

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
Expand Down Expand Up @@ -38,10 +38,9 @@ android {
}

bintray {
println 'Start bintray upload'
user = 'allaboutapps'
// read pw from secure travis.yml
key = "4c550d0db2d9dcb397a218e330bce6409ca9a28f" //System.getenv('BINTRAY_KEY')
key = System.getenv('BINTRAY_KEY')

pkg {
repo = 'A3-Android'
Expand All @@ -54,13 +53,13 @@ bintray {
released = new Date()
vcsTag = System.getenv('TRAVIS_TAG')
}
dryRun = false
dryRun = true
publish = true
licenses = ['MIT']
vcsUrl = 'https://github.com/allaboutapps/InAppUpdater'
websiteUrl = 'http://www.allaboutapps.at'
}
configurations = ['archives']
publications = ['mavenAar']
}

publishing {
Expand Down

0 comments on commit 0c75aa2

Please sign in to comment.