Skip to content

Commit

Permalink
Fix gradle issues in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
floralvikings committed Nov 23, 2015
1 parent 2052ab2 commit e300af5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ version = '0.0.0-alpha'
apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'jacoco'
apply plugin: 'maven'
apply plugin: 'signing'

sourceSets {
Expand Down Expand Up @@ -140,6 +141,10 @@ dependencies {
testCompile 'cglib:cglib:3.2.0'
}

def sonatypeUsername = hasProperty('sonatypeUsername') ? sonatypeUsername : System.getenv('sonatypeUsername')
def sonatypePassword = hasProperty('sonatypePassword') ? sonatypePassword : System.getenv('sonatypePassword')


uploadArchives {
repositories {
mavenDeployer {
Expand Down

0 comments on commit e300af5

Please sign in to comment.