Skip to content

Commit cce0881

Browse files
committed
update spock, checkstyle, findbugs; fix spock docs link in readme
1 parent 7bbe7d6 commit cce0881

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
### 1.0.2 (2015-02-23)
1+
### 1.0.3 (2015-03-12)
2+
* Update spock 0.7 -> 1.0
3+
* Update findbugs 3.0.0 -> 3.0.1
4+
* Update checkstyle 6.3 - > 6.4.1
25

6+
### 1.0.2 (2015-02-23)
37
* Update gradle 2.2.1 -> 2.3
48
* Update gradle-versions-plugin 0.7 -> 0.8
59

610
### 1.0.1 (2015-02-12)
7-
811
* Update gradle-bintray-plugin 1.0 -> 1.1
912
* Update coveralls-gradle-plugin 2.1.0 -> 2.3.1
1013
* Update checkstyle 6.2 -> 6.3
1114

1215
### 1.0.0 (2015-01-21)
13-
1416
* initial release (converted [slush generator](https://github.com/xvik/slush-lib-java))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Features:
1414
* [MIT](http://opensource.org/licenses/MIT) license (hardcoded)
1515
* [Gradle](http://www.gradle.org/) build (with support of optional and provided dependencies)
1616
* [Maven central](http://search.maven.org/) compatible artifacts (jar, sources, javadocs)
17-
* Ready for [spock](https://code.google.com/p/spock/) tests ([documentation](http://spock-framework.readthedocs.org/en/latest/))
17+
* Ready for [spock](http://spockframework.org) tests ([documentation](http://docs.spockframework.org))
1818
* [Bintray](https://bintray.com/) publication (+ jars signing and maven central publishing)
1919
* [Travis-ci](https://travis-ci.org/) integration (CI and healthy badge)
2020
* [Coveralls](http://coveralls.io/) integration (code coverage badge)

app/templates/gradle-base/build-deps.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ dependencies {
1212
testCompile 'junit:junit:4.12'
1313
testCompile 'ch.qos.logback:logback-classic:1.1.2'
1414
testCompile 'org.slf4j:jul-to-slf4j:1.7.9'
15-
testCompile 'org.spockframework:spock-core:0.7-groovy-2.0'
15+
testCompile 'org.spockframework:spock-core:1.0-groovy-2.4'
1616
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ apply plugin: 'findbugs'
1010
// findbugs 3 supports java 8, but requires java 7!
1111
// if you need java 6 support use 2.0.3 version
1212
findbugs {
13-
toolVersion = "3.0.0"
13+
toolVersion = "3.0.1"
1414
ignoreFailures = false
1515
sourceSets = [sourceSets.main]
1616
effort = "max"
@@ -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.3"
128+
toolVersion = "6.4.1"
129129
ignoreFailures = false
130130
sourceSets = [sourceSets.main]
131131
configFile = file('gradle/config/checkstyle/checkstyle.xml')

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "generator-lib-java",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
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",
@@ -34,11 +34,11 @@
3434
"maven central"
3535
],
3636
"dependencies": {
37-
"chalk": "^0.5.1",
37+
"chalk": "^1.0.0",
3838
"configstore": "^0.3.2",
3939
"github": "^0.2.3",
40-
"insight": "^0.5.2",
41-
"lodash": "^3.3.0",
40+
"insight": "^0.5.3",
41+
"lodash": "^3.5.0",
4242
"properties": "^1.2.1",
4343
"sprintf": "^0.1.5",
4444
"underscore.string": "^3.0.3",
@@ -48,7 +48,7 @@
4848
"devDependencies": {
4949
"fs-readdir-recursive": "^0.1.0",
5050
"mocha": "*",
51-
"mocha-jshint": "0.0.9"
51+
"mocha-jshint": "1.0.0"
5252
},
5353
"peerDependencies": {
5454
"yo": ">=1.4.2"

0 commit comments

Comments
 (0)