Skip to content

Commit 7b6ecf1

Browse files
committed
update plugins
1 parent 996852e commit 7b6ecf1

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
* Update ru.vyarus.java-lib 1.1.2 -> 2.1.0
2+
* Update gradle-github-info-plugin 1.1.0 -> 1.2.0
3+
* Update io.spring.dependency-management 1.0.8 -> 1.0.9
4+
* Update spock to 1.3
5+
16
### 2.7.0 (2019-11-24)
27
* Fix node compatibility: minimal required node is 8.5.0
38
* Update gradle 4.8.1 -> 5.6.4

app/templates/project-multi/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
plugins {
22
id 'com.gradle.build-scan' version '3.0'
3-
id 'ru.vyarus.java-lib' version '1.1.2' apply false
4-
id 'ru.vyarus.github-info' version '1.1.0' apply false<% if (enableQualityChecks) { %><% if (animalsnifferSignature) { %>
3+
id 'ru.vyarus.java-lib' version '2.1.0' apply false
4+
id 'ru.vyarus.github-info' version '1.2.0' apply false<% if (enableQualityChecks) { %><% if (animalsnifferSignature) { %>
55
id 'ru.vyarus.animalsniffer' version '1.5.0' apply false<% } %>
66
id 'ru.vyarus.quality' version '4.0.0' apply false<% } %>
77
id 'com.jfrog.bintray' version '1.8.4' apply false
8-
id "io.spring.dependency-management" version "1.0.8.RELEASE" apply false
8+
id "io.spring.dependency-management" version "1.0.9.RELEASE" apply false
99

1010
id 'base'
1111
id 'jacoco'
@@ -61,7 +61,7 @@ subprojects {
6161
// mavenBom "group:artifact:version"
6262
// }
6363
dependencies {
64-
dependency 'org.spockframework:spock-core:1.2-groovy-2.5'
64+
dependency 'org.spockframework:spock-core:1.3-groovy-2.5'
6565
// groovy bundled with spock (2.5.2) does not work well with java 11
6666
dependency "org.codehaus.groovy:groovy:$groovy"
6767
dependency "org.codehaus.groovy:groovy-json:$groovy"

app/templates/project-single/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ plugins {
33
id 'groovy'
44
id 'jacoco'
55
id 'project-report'
6-
id 'ru.vyarus.java-lib' version '1.1.2'
7-
id 'ru.vyarus.github-info' version '1.1.0'<% if (enableQualityChecks) { %><% if (animalsnifferSignature) { %>
6+
id 'ru.vyarus.java-lib' version '2.1.0'
7+
id 'ru.vyarus.github-info' version '1.2.0'<% if (enableQualityChecks) { %><% if (animalsnifferSignature) { %>
88
id 'ru.vyarus.animalsniffer' version '1.5.0'<% } %>
99
id 'ru.vyarus.quality' version '4.0.0'<% } %>
1010
id 'com.jfrog.bintray' version '1.8.4'
1111
id 'net.researchgate.release' version '2.8.1'
1212
id 'com.github.ben-manes.versions' version '0.27.0'
13-
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
13+
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
1414
}
1515

1616
sourceCompatibility = <%= targetJava %>
@@ -31,7 +31,7 @@ dependencyManagement {
3131
// mavenBom "group:artifact:version"
3232
// }
3333
dependencies {
34-
dependency 'org.spockframework:spock-core:1.2-groovy-2.5'
34+
dependency 'org.spockframework:spock-core:1.3-groovy-2.5'
3535
// groovy bundled with spock (2.5.2) does not work well with java 11
3636
dependency "org.codehaus.groovy:groovy:$groovy"
3737
dependency "org.codehaus.groovy:groovy-json:$groovy"

0 commit comments

Comments
 (0)