Skip to content

Commit

Permalink
Use newer defaults
Browse files Browse the repository at this point in the history
This enables better upload of test results to circle ci.
  • Loading branch information
ajoberstar committed Apr 8, 2018
1 parent a178066 commit 23e875e
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,21 @@ allprojects {

group = 'org.ajoberstar.reckon'

plugins.withId('java') {
model {
bintray {
owner = 'ajoberstar'
repo = 'maven'
pkg = 'reckon'
plugins.withId('maven-publish') {
publishing {
repositories {
maven {
name = 'bintray'
url = 'https://api.bintray.com/maven/ajoberstar/maven/reckon/;publish=1'
credentials {
username = System.env['BINTRAY_USER']
password = System.env['BINTRAY_KEY']
}
}
}
}
}

}

ext.grgitVersion = '[2.0.0,)'
Expand Down

0 comments on commit 23e875e

Please sign in to comment.