diff options
author | Mark Perry <maperry78@yahoo.com.au> | 2015-07-22 22:48:19 +1000 |
---|---|---|
committer | Mark Perry <maperry78@yahoo.com.au> | 2015-07-22 22:48:19 +1000 |
commit | a0dfc6628b2c247feea04b258f8ac018902d900c (patch) | |
tree | 9cefe3ef585b990b067c4464acb23d7fa471ded0 /build.gradle | |
parent | a777707c4757d83a5bbc348b9a0b10cf05a2b68a (diff) | |
download | frege-gradle-plugin-a0dfc6628b2c247feea04b258f8ac018902d900c.tar.gz frege-gradle-plugin-a0dfc6628b2c247feea04b258f8ac018902d900c.tar.bz2 frege-gradle-plugin-a0dfc6628b2c247feea04b258f8ac018902d900c.zip |
Do 0.4 releaserelease-0.4
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 153d556..72333ee 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,17 @@ +buildscript { + repositories { + mavenCentral() + } + dependencies { + classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3" + } +} + apply plugin: "groovy" apply plugin: "maven" apply plugin: "signing" +apply plugin: 'io.codearte.nexus-staging' defaultTasks "build" @@ -10,7 +20,7 @@ targetCompatibility = 1.7 ext { baseVersion = "0.4" - isSnapshot = true + isSnapshot = false snapshotAppendix = "-SNAPSHOT" projectVersion = baseVersion + (isSnapshot ? snapshotAppendix : "") @@ -39,3 +49,9 @@ dependencies { compile gradleApi() compile localGroovy() } + +nexusStaging { + packageGroup = groupName + stagingProfileId = "a622b6773bea07" +} + |