-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from rspieldenner/gradle2.6
Move to gradle 2.6, add matrix testing
- Loading branch information
Showing
8 changed files
with
70 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Tue Jun 03 16:48:14 PDT 2014 | ||
#Fri Aug 21 09:58:28 PDT 2015 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
buildscript { | ||
repositories { jcenter() } | ||
dependencies { | ||
classpath ':nebula-plugin-plugin:%%VERSION%%' | ||
classpath 'com.netflix.nebula:nebula-core:2.2.0' | ||
classpath 'com.netflix.nebula:nebula-bintray-plugin:3.0.0' | ||
classpath 'com.netflix.nebula:nebula-release-plugin:2.2.7' | ||
} | ||
} | ||
|
||
plugins { | ||
id 'groovy' | ||
id 'nebula.maven-publishing' version '3.0.2' | ||
id 'nebula.javadoc-jar' version '3.0.2' | ||
id 'nebula.source-jar' version '3.0.2' | ||
} | ||
|
||
import org.ajoberstar.grgit.Grgit | ||
def grgit = Grgit.init(dir: '.') | ||
grgit.commit(message: 'initial commit') | ||
|
||
apply plugin: 'nebula.plugin-plugin' | ||
|
||
task runGradleTest() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters