Skip to content

Commit

Permalink
Released 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sten Roger Sandvik committed Jan 13, 2017
1 parent 2449c1a commit 8b20544
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 41 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
Changelog
=========

Version 1.1.0 *(not released)*
------------------------------
Version 1.1.0 *(2017-01-13)*
----------------------------

* Override environment instead of setting it (#176) _(s0x)_
* Fix typo in resolveSingle (#166) _(s0x)_
* Add support for node options (#141, #174) _(whboyd)_
* Fix symlink problem using NPM (#164, #165, #181) _(s0x)_
* Set PATH variable for node, npm and yarn (#134, #146, #149, #164, #179) _(s0x)_
* ...

Version 1.0.1 *(2016-12-04)*
----------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/grunt.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start using the plugin, add this into your `build.gradle` file (see [Installing]

```gradle
plugins {
id "com.moowork.grunt" version "1.0.1"
id "com.moowork.grunt" version "1.1.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/gulp.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To start using the plugin, add this into your `build.gradle` file (see [Installi

```gradle
plugins {
id "com.moowork.gulp" version "1.0.1"
id "com.moowork.gulp" version "1.1.0"
}
```

Expand Down
12 changes: 6 additions & 6 deletions docs/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ in your `build.gradle` file:

```gradle
plugins {
id "com.moowork.node" version "1.0.1"
id "com.moowork.node" version "1.1.0"
}
```

If you want to install all of the node-plugins (which is pretty uncommon), then write this:

```gradle
plugins {
id "com.moowork.node" version "1.0.1"
id "com.moowork.grunt" version "1.0.1"
id "com.moowork.gulp" version "1.0.1"
id "com.moowork.node" version "1.1.0"
id "com.moowork.grunt" version "1.1.0"
id "com.moowork.gulp" version "1.1.0"
}
```

Expand All @@ -30,7 +30,7 @@ buildscript {
}
dependencies {
classpath "com.moowork.gradle:gradle-node-plugin:1.0.1"
classpath "com.moowork.gradle:gradle-node-plugin:1.1.0"
}
}
Expand All @@ -52,7 +52,7 @@ buildscript {
}
dependencies {
classpath "com.moowork.gradle:gradle-node-plugin:2.0.0-SNAPSHOT"
classpath "com.moowork.gradle:gradle-node-plugin:1.2.0-SNAPSHOT"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ file (see [Installing](installing.md) for details):

```gradle
plugins {
id "com.moowork.node" version "1.0.1"
id "com.moowork.node" version "1.1.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
# Current version
#
version = 1.0.2-SNAPSHOT
version = 1.1.0
1 change: 0 additions & 1 deletion gradle/buildscript.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ repositories {
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.4.0'
classpath 'com.gradle.publish:plugin-publish-plugin:0.9.6'
}
50 changes: 23 additions & 27 deletions gradle/publishing.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.artifactory'
apply plugin: 'com.gradle.plugin-publish'
apply plugin: 'com.jfrog.bintray'

ext {
bintrayUser = resolveProperty( 'BINTRAY_USER', 'bintrayUser' )
Expand Down Expand Up @@ -38,34 +38,30 @@ artifactory {
}
}

pluginBundle {
website = 'https://github.com/srs/gradle-node-plugin'
vcsUrl = 'https://github.com/srs/gradle-node-plugin'
bintray {
user = bintrayUser
key = bintrayKey
publications = ['mavenJava']
publish = true

plugins {
nodePlugin {
id = 'com.moowork.node'
displayName = 'Gradle Node Plugin'
description = 'Gradle plugin for executing node scripts.'
tags = ['java', 'gradle', 'node', 'yarn', 'npm']
}
gruntPlugin {
id = 'com.moowork.grunt'
displayName = 'Gradle Grunt Plugin'
description = 'Gradle pluign for executing grunt builds.'
tags = ['java', 'gradle', 'node', 'yarn', 'npm', 'grunt']
}
gulpPlugin {
id = 'com.moowork.gulp'
displayName = 'Gradle Gulp Plugin'
description = 'Gradle plugin for executing gulp builds.'
tags = ['java', 'gradle', 'node', 'yarn', 'npm', 'gulp']
}
}
pkg {
repo = 'maven'
name = 'gradle-node-plugin'
desc = 'Gradle plugin for executing node scripts. Includes support for Yarn, Grunt and Gulp.'
websiteUrl = 'https://github.com/srs/gradle-node-plugin'
issueTrackerUrl = 'https://github.com/srs/gradle-node-plugin/issues'
vcsUrl = 'https://github.com/srs/gradle-node-plugin.git'
licenses = ['Apache-2.0']
labels = ['java', 'gradle', 'groovy', 'node', 'gulp', 'grunt']
publicDownloadNumbers = true
githubRepo = "srs/gradle-node-plugin"

mavenCoordinates {
groupId = 'com.moowork.gradle'
artifactId = 'gradle-node-plugin'
version {
vcsTag = "v$project.version"
attributes = ['gradle-plugin': ["com.moowork.node:${project.group}:${project.name}",
"com.moowork.grunt:${project.group}:${project.name}",
"com.moowork.gulp:${project.group}:${project.name}"]]
}
}
}

Expand Down

0 comments on commit 8b20544

Please sign in to comment.