Skip to content

Commit 201d9e7

Browse files
committed
update checkstyle, gradle and coveralls plugins; update npm deps
1 parent 76998f9 commit 201d9e7

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
### 1.0.0 (2014-01-21)
1+
### 1.0.1 (2015-02-12)
2+
3+
* Update gradle-bintray-plugin 1.0 -> 1.1
4+
* Update coveralls-gradle-plugin 2.1.0 -> 2.3.1
5+
* Update checkstyle 6.2 -> 6.3
6+
7+
### 1.0.0 (2015-01-21)
28

39
* initial release (converted [slush generator](https://github.com/xvik/slush-lib-java))

app/templates/gradle-base/gradle/buildscript.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ repositories {
66
}
77
dependencies {
88
// bintray upload
9-
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0"
9+
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1"
1010
// coveralls integration
11-
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.1.0"
11+
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.3.1"
1212
// check dependencies updates
1313
classpath "com.github.ben-manes:gradle-versions-plugin:0.7"
1414
classpath 'com.github.townsfolk:gradle-release:1.2'

app/templates/gradle-base/gradle/quality.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ apply plugin: 'checkstyle'
125125

126126
// Note: checkstyle 6.2 requires jdk7 or above. For jdk6 use older version (6.1.1)
127127
checkstyle {
128-
toolVersion = "6.2"
128+
toolVersion = "6.3"
129129
ignoreFailures = false
130130
sourceSets = [sourceSets.main]
131131
configFile = file('gradle/config/checkstyle/checkstyle.xml')

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-lib-java",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Java library project generator, hosted on github, build with gradle and published to bintray and maven central",
55
"license": "MIT",
66
"main": "app/index.js",
@@ -37,17 +37,17 @@
3737
"chalk": "^0.5.1",
3838
"configstore": "^0.3.2",
3939
"detect-conflict": "^1.0.0",
40-
"github": "^0.2.1",
41-
"insight": "^0.5.0",
42-
"lodash": "^2.4.1",
40+
"github": "^0.2.3",
41+
"insight": "^0.5.2",
42+
"lodash": "^3.1.0",
4343
"properties": "^1.2.1",
4444
"sprintf": "^0.1.5",
45-
"underscore.string": "^2.4.0",
45+
"underscore.string": "^3.0.3",
4646
"user-home": "^1.1.1",
47-
"yeoman-generator": "^0.18.6"
47+
"yeoman-generator": "^0.18.8"
4848
},
4949
"devDependencies": {
50-
"exec": "^0.1.3",
50+
"exec": "^0.2.0",
5151
"fs-readdir-recursive": "^0.1.0",
5252
"mocha": "*",
5353
"mocha-jshint": "0.0.9"

0 commit comments

Comments
 (0)