Skip to content

Commit

Permalink
including bintray plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
kaifox committed Nov 20, 2019
1 parent e4dae5e commit 56b05d0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ buildscript {

project.ext['BINTRAY.userName'] = System.getProperty('BINTRAY_USER') ?: System.getenv('BINTRAY_USER')
project.ext['BINTRAY.apiToken'] = System.getProperty('BINTRAY_API_TOKEN') ?: System.getenv('BINTRAY_API_TOKEN')


repositories {
if (project['CERN_VM']) {
maven { url 'http://artifactory.cern.ch/ds-jcenter' }
maven { url 'http://artifactory.cern.ch/development' }
} else {
jcenter()
}
}
dependencies { classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' }
}

apply plugin: 'java'
Expand Down

0 comments on commit 56b05d0

Please sign in to comment.