Skip to content

Commit

Permalink
Updated GnuMake plugin id to org.ysb33r.gnumake and pushed Gradle b…
Browse files Browse the repository at this point in the history
…uild version to 2.0
  • Loading branch information
ysb33r committed Jan 1, 2015
1 parent bc63789 commit 984681b
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
8 changes: 5 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'org.ysb33r.gradle:bintray:1.4-SNAPSHOT'
classpath 'org.ysb33r.gradle:bintray:1.5'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:2.2.3'
}
}
Expand All @@ -19,6 +19,7 @@ subprojects {


sourceCompatibility = 1.6
targetCompatibility = 1.6

group = 'org.ysb33r.gradle'

Expand Down Expand Up @@ -50,8 +51,9 @@ subprojects {
dependencies {
compile gradleApi()
compile localGroovy()
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile 'org.spockframework:spock-core:0.7-groovy-1.8'
testCompile ('org.spockframework:spock-core:0.7-groovy-2.0') {
exclude module : 'groovy-all'
}
}

artifactory {
Expand Down
7 changes: 7 additions & 0 deletions gnumake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# CHANGELOG

## Version 0.2
- Change plugin id to `org.ysb33r.gnumake`

## Version 0.1
- Initial release
3 changes: 2 additions & 1 deletion gnumake/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Previous versions of this document
Known compatibility
-------------------

+ 0.2 - Gradle 2.0
+ 0.1 - Gradle 1.12
+ 0.0.9 - Gradle 1.9
+ 0.0.3 - Gradle 1.6
Expand Down Expand Up @@ -54,7 +55,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'org.ysb33r.gradle:gnumake:0.1'
classpath 'org.ysb33r.gradle:gnumake:0.2'
}
}
Expand Down
16 changes: 8 additions & 8 deletions gnumake/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,12 @@

archivesBaseName = 'gnumake'
ext.moduleName = 'gnumake-gradle-plugin'
version = 0.1
version = '0.2'

repositories {
mavenCentral()
}

dependencies {
compile gradleApi()
compile localGroovy()

testCompile 'org.spockframework:spock-core:0.7-groovy-1.8'
}

jar {
manifest {
attributes 'Implementation-Title': moduleName, 'Implementation-Version': version
Expand All @@ -42,6 +35,13 @@ uploadArchives {
packageName moduleName
description 'This is a plugin for Gradle that allows invoking GNU Make builds'
tags 'gradle','GNU','gmake','make','gnumake'
licenses 'Apache-2.0'
vcsUrl 'https://github.com/ysb33r/Gradle.git'
autoCreatePackage true
updatePackage true
versionAttributes 'gradle-plugin' : "org.ysb33r.gnumake:${group}:${archivesBaseName}"
}
}

onlyIf { !version.endsWith("SNAPSHOT") }
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.11-all.zip
distributionUrl=http\://services.gradle.org/distributions/gradle-2.0-all.zip

0 comments on commit 984681b

Please sign in to comment.