summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMark Perry <maperry78@yahoo.com.au>2015-07-22 22:48:19 +1000
committerMark Perry <maperry78@yahoo.com.au>2015-07-22 22:48:19 +1000
commita0dfc6628b2c247feea04b258f8ac018902d900c (patch)
tree9cefe3ef585b990b067c4464acb23d7fa471ded0 /build.gradle
parenta777707c4757d83a5bbc348b9a0b10cf05a2b68a (diff)
downloadfrege-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.gradle18
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"
+}
+