Skip to content

Commit

Permalink
Bump starter (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszkwiecinski authored Jun 24, 2023
1 parent f86bee8 commit 77fa551
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ jobs:
distribution: 'temurin'
java-version: 20

- uses: gradle/gradle-build-action@v2

- name: Unwrap GPG key
env:
GPG_KEY_CONTENTS: ${{ secrets.GPG_KEY_CONTENTS }}
Expand Down
10 changes: 1 addition & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ commonConfig {
allprojects {
pluginManager.withPlugin("kotlin") { plugin ->
def kotlinVersion = KotlinPluginWrapperKt.getKotlinPluginVersion(project)
configurations.configureEach {
configurations.matching { it.name != "detekt" }.configureEach {
resolutionStrategy.eachDependency {
if (requested.group == 'org.jetbrains.kotlin' && requested.name.startsWith("kotlin")) {
useVersion kotlinVersion
Expand All @@ -40,12 +40,4 @@ allprojects {
}
}
}
// TODO remove after project uses latest jacoco version
pluginManager.withPlugin("jacoco") {
afterEvaluate {
jacoco {
toolVersion = "0.8.10"
}
}
}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
google-agp = "8.0.2"
gradle-starter = "0.60.1"
gradle-starter = "0.61.1"
gradle-gradlepublish = "1.2.0"
gradle-jacocotestkit = "1.0.12"
gradle-detekt = "1.23.0"
Expand Down

0 comments on commit 77fa551

Please sign in to comment.