From b2c9c217163c6781df55ce1da228c9d796ba469f Mon Sep 17 00:00:00 2001 From: Benjamin Muschko Date: Tue, 2 Jan 2018 07:43:13 -0700 Subject: [PATCH] Bump up plugin versions --- README.md | 2 +- RELEASE_NOTES.md | 6 ++++++ build.gradle | 13 +++++++------ 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b78d00f..b767595 100755 --- a/README.md +++ b/README.md @@ -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' } } diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 66e3060..4dab5a3 100755 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -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. diff --git a/build.gradle b/build.gradle index fd4437e..e95de4c 100755 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,11 @@ 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' } } @@ -13,13 +13,13 @@ 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() @@ -27,7 +27,7 @@ repositories { 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' @@ -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'