Skip to content

Commit

Permalink
Bump up plugin versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bmuschko committed Jan 2, 2018
1 parent 8db2dd2 commit b2c9c21
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ shows an example on how to retrieve it from Bintray:
}

dependencies {
classpath 'com.bmuschko:gradle-cargo-plugin:2.2.3'
classpath 'com.bmuschko:gradle-cargo-plugin:2.3'
}
}

Expand Down
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### Version 2.3 (January 2, 2018)

* Introduce task for configuring local container - [Pull request 144](https://github.com/bmuschko/gradle-cargo-plugin/pull/144).
* Upgrade to Cargo Ant tasks version 1.6.6.
* Upgrade to Gradle Wrapper 4.4.1.

### Version 2.2.3 (June 4, 2016)

* Remove use of Gradle internal methods.
Expand Down
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
buildscript {
repositories {
maven { url 'http://jcenter.bintray.com' }
jcenter()
}

dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'org.ajoberstar:gradle-git:0.9.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'org.ajoberstar:gradle-git:1.4.2'
}
}

apply plugin: 'groovy'
apply plugin: 'idea'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'github-pages'
apply plugin: 'org.ajoberstar.github-pages'

def compatibilityVersion = 1.6
sourceCompatibility = compatibilityVersion
targetCompatibility = compatibilityVersion
group = 'com.bmuschko'
version = '2.2.3'
version = '2.3'

repositories {
mavenCentral()
}

dependencies {
compile localGroovy(), gradleApi()
def cargoVersion = '1.4.15'
def cargoVersion = '1.6.6'
compile "org.codehaus.cargo:cargo-daemon-client:$cargoVersion"
testCompile('org.spockframework:spock-core:1.0-groovy-2.4') {
exclude group: 'org.codehaus.groovy'
Expand Down Expand Up @@ -122,6 +122,7 @@ bintray {
user = project.hasProperty('bintrayUser') ? project.getProperty('bintrayUser') : null
key = project.hasProperty('bintrayKey') ? project.getProperty('bintrayKey') : null
publications = ['mavenJava']
publish = true

pkg {
repo = 'gradle-plugins'
Expand Down

0 comments on commit b2c9c21

Please sign in to comment.