From 40b1a9247ade8c2259134c33c60c0194788a93f6 Mon Sep 17 00:00:00 2001 From: Sten Roger Sandvik Date: Sat, 26 Sep 2015 21:31:56 +0200 Subject: [PATCH] Released 0.11 --- CHANGELOG.md | 8 +++++++- README.md | 24 +++++++++--------------- build.gradle | 2 +- gradle.properties | 3 +-- 4 files changed, 18 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 222ba9c..1b507a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,17 @@ Changelog ========= -Version 0.11 *(not released)* +Version 0.12 *(not released)* ----------------------------- * ... +Version 0.11 *(not released)* +----------------------------- + +* Upgraded wrapper to use Gradle 2.7 +* Using gradle-node-plugin version 0.11 + Version 0.10 *(2015-05-19)* --------------------------- diff --git a/README.md b/README.md index d34222b..c272aeb 100644 --- a/README.md +++ b/README.md @@ -18,29 +18,23 @@ and to use them you will need to add OJO to your buildscript configuration. Setup the plugin like this: plugins { - id "com.moowork.gulp" version "0.10" + id "com.moowork.gulp" version "0.11" } -Or using the old (pre 2.1) way: +Or: buildscript { - repositories { - jcenter() - - // If you want to use a SNAPSHOT build, add the OJO repository: - maven { - name 'JFrog OSS snapshot repo' - url 'https://oss.jfrog.org/oss-snapshot-local/' - } + repositories { + maven { + url "https://plugins.gradle.org/m2/" } + } - dependencies { - classpath 'com.moowork.gradle:gradle-gulp-plugin:0.10' - } + dependencies { + classpath 'com.moowork.gradle:gradle-gulp-plugin:0.11' + } } -Include the plugin in your build.gradle file like this: - apply plugin: 'com.moowork.gulp' The plugin will also apply gradle-node-plugin for Node and NPM related tasks. diff --git a/build.gradle b/build.gradle index 527fb1c..ab79af1 100644 --- a/build.gradle +++ b/build.gradle @@ -29,7 +29,7 @@ dependencies { testCompile("com.netflix.nebula:nebula-test:2.2.0") { exclude group: "org.codehaus.groovy", module: "groovy-all" } - compile 'com.moowork.gradle:gradle-node-plugin:0.10' + compile 'com.moowork.gradle:gradle-node-plugin:0.11' } task sourcesJar( type: Jar ) { diff --git a/gradle.properties b/gradle.properties index 27ff595..2480ef1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,4 @@ # # Current version # -version = 0.11-SNAPSHOT - +version = 0.11