Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

Commit

Permalink
fix builds without maven config
Browse files Browse the repository at this point in the history
  • Loading branch information
willbailey committed Feb 7, 2014
1 parent 3f54079 commit 5d36fc4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ task smokeTest(dependsOn: [
'reboundDistJar'
])

// Configure gradle.properties to do maven builds
if (!project.hasProperty('sonatypeRepo') ||
!project.hasProperty('sonatypeUsername') ||
!project.hasProperty('sonatypePassword')) {
return;
}

// Maven Push

apply plugin: 'maven'
Expand Down
7 changes: 0 additions & 7 deletions gradle.properties

This file was deleted.

0 comments on commit 5d36fc4

Please sign in to comment.