Skip to content

Commit

Permalink
Released 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Sten Roger Sandvik committed Sep 26, 2015
1 parent 1bd226c commit 40b1a92
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 19 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)*
---------------------------

Expand Down
24 changes: 9 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 ) {
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#
# Current version
#
version = 0.11-SNAPSHOT

version = 0.11

0 comments on commit 40b1a92

Please sign in to comment.