Skip to content

Commit

Permalink
Bump version to 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ksoichiro committed Mar 20, 2016
1 parent f65b202 commit 79b2ab8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ For Gradle 2.1+:

```gradle
plugins {
id 'com.github.ksoichiro.web.resource' version '1.6.1'
id 'com.github.ksoichiro.web.resource' version '1.7.0'
}
```

Expand All @@ -32,7 +32,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.github.ksoichiro:gradle-web-resource-plugin:1.6.1'
classpath 'com.github.ksoichiro:gradle-web-resource-plugin:1.7.0'
}
}
Expand Down Expand Up @@ -135,6 +135,7 @@ To use bower features, please install git first.
| webResourceInstallBowerDependencies | Installs JavaScript dependencies using bower. If the configuration `webResource.bower.dependencies` is empty, this task will be skipped (since v1.6.0). |
| webResourceCopyBowerDependencies | Copies bower dependencies which `webResourceInstallBowerDependencies` installed to a certain directory. If the configuration `webResource.bower.dependencies` is empty, this task will be skipped (since v1.6.0). |
| webResourceCompileCoffeeScript | Compiles CoffeeScript source files into JavaScript files. If the source directory does not exist, this task will be skipped (since v1.6.0). |
| webResourceTestCoffeeScript | Tests CoffeeScript source files with Mocha. If the source directory does not exist, this task will be skipped (since v1.7.0). |
| webResourceCompileLess | Compiles LESS source files into CSS files. If the source directory does not exist, this task will be skipped (since v1.6.0). |

## Configuration
Expand All @@ -153,6 +154,11 @@ webResource {
// dest 'src/main/resources/static'
}
testBase {
// Change base directories
src = 'src/test'
}
coffeeScript {
// Set false if you don't use CoffeeScript related features
enabled = true
Expand All @@ -169,6 +175,14 @@ webResource {
parallelize = true
}
testCoffeeScript {
// Set false if you don't test CoffeeScript source files
enabled = true
// Change CoffeeScript src/dest directories
src = 'coffee'
dest = 'test'
}
less {
// Set false if you don't use LESS related features
enabled = true
Expand Down Expand Up @@ -449,6 +463,8 @@ This plugin deeply depends on these excellent projects.
* Bundled in the plugin jar to execute async tasks without native Promise class.
* [isaacs/glob](https://github.com/isaacs/node-glob)
* Bundled in the plugin jar to expand globs for minifying JavaScript files.
* [mochajs/mocha](https://github.com/mochajs/mocha)
* Bundled in the plugin jar to test CoffeeScript files.

## License

Expand Down
2 changes: 1 addition & 1 deletion gradle/variables.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PLUGIN_VERSION=1.7.0-SNAPSHOT
PLUGIN_VERSION=1.7.0

GRADLE_VERSION=2.8
GROUP=com.github.ksoichiro
Expand Down

0 comments on commit 79b2ab8

Please sign in to comment.