Skip to content

Commit 0b51b4e

Browse files
authored
Merge pull request #151 from shipkit/sf
Upgraded to Gradle 7 and other dependency versions
2 parents 1565b58 + bb948ce commit 0b51b4e

File tree

8 files changed

+190
-148
lines changed

8 files changed

+190
-148
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
dependencies {
77
classpath "org.shipkit:shipkit-auto-version:1.+"
88
classpath "org.shipkit:shipkit-changelog:1.+"
9-
classpath "com.gradle.publish:plugin-publish-plugin:0.15.0"
9+
classpath "com.gradle.publish:plugin-publish-plugin:1.2.1"
1010
}
1111
}
1212

@@ -38,9 +38,9 @@ dependencies {
3838

3939
testImplementation 'junit:junit:4.13.2'
4040

41-
testImplementation "org.spockframework:spock-core:1.3-groovy-2.5"
41+
testImplementation "org.spockframework:spock-core:2.3-groovy-3.0"
4242
testImplementation "cglib:cglib-nodep:3.3.0" //mocking concrete classes with spock
43-
testImplementation "org.objenesis:objenesis:3.2" //as above
43+
testImplementation "org.objenesis:objenesis:3.3" //as above
4444

4545
testImplementation gradleTestKit()
4646
}

gradle/release.gradle

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,21 @@
11
// docs: https://plugins.gradle.org/docs/publish-plugin
22
gradlePlugin {
3-
plugins {
4-
changelog {
5-
id = 'org.shipkit.shipkit-changelog'
6-
implementationClass = 'org.shipkit.changelog.ChangelogPlugin'
7-
}
8-
githubRelease {
9-
id = 'org.shipkit.shipkit-github-release'
10-
implementationClass = 'org.shipkit.github.release.GithubReleasePlugin'
11-
}
12-
}
13-
}
14-
15-
pluginBundle {
163
website = 'https://github.com/shipkit/shipkit-changelog'
174
vcsUrl = 'https://github.com/shipkit/shipkit-changelog.git'
185
plugins {
196
changelog {
7+
id = 'org.shipkit.shipkit-changelog'
8+
implementationClass = 'org.shipkit.changelog.ChangelogPlugin'
209
displayName = 'Shipkit changelog plugin'
2110
description = 'Generates changelog based on ticked IDs found in commit messages and Github pull request information'
22-
tags = ['ci', 'shipkit', 'changelog']
11+
tags.addAll('ci', 'shipkit', 'changelog')
2312
}
2413
githubRelease {
14+
id = 'org.shipkit.shipkit-github-release'
15+
implementationClass = 'org.shipkit.github.release.GithubReleasePlugin'
2516
displayName = 'Shipkit Github release plugin'
2617
description = 'Posts a release to Github using the REST API'
27-
tags = ['ci', 'shipkit', 'github', 'release']
18+
tags.addAll('ci', 'shipkit', 'github', 'release')
2819
}
2920
}
3021
}

gradle/wrapper/gradle-wrapper.jar

2.81 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
4+
networkTimeout=10000
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)