Skip to content

Commit 70c1417

Browse files
Bump io.freefair.gradle:lombok-plugin from 8.14.2 to 9.0.0 (#379)
* Bump io.freefair.gradle:lombok-plugin from 8.14.2 to 9.0.0 Bumps [io.freefair.gradle:lombok-plugin](https://github.com/freefair/gradle-plugins) from 8.14.2 to 9.0.0. - [Release notes](https://github.com/freefair/gradle-plugins/releases) - [Commits](freefair/gradle-plugins@8.14.2...9.0.0) --- updated-dependencies: - dependency-name: io.freefair.gradle:lombok-plugin dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Upgrade Gradle and dependencies --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ivan Vakhrushev <mfvanek@gmail.com>
1 parent 23d50bf commit 70c1417

File tree

9 files changed

+15
-19
lines changed

9 files changed

+15
-19
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
22

33
plugins {
44
id("java")
5-
id("com.github.ben-manes.versions") version "0.52.0"
5+
id("com.github.ben-manes.versions") version "0.53.0"
66
id("info.solidsoft.pitest")
77
id("jacoco-report-aggregation")
88
}
@@ -13,7 +13,7 @@ description = "Experiments with Java"
1313

1414
allprojects {
1515
group = "io.github.mfvanek"
16-
version = "0.3.0"
16+
version = "0.3.1"
1717

1818
repositories {
1919
mavenLocal()
@@ -48,7 +48,7 @@ tasks.named<DependencyUpdatesTask>("dependencyUpdates").configure {
4848

4949
tasks {
5050
wrapper {
51-
gradleVersion = "8.14.3"
51+
gradleVersion = "9.1.0"
5252
}
5353

5454
jar {

buildSrc/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ repositories {
77
}
88

99
dependencies {
10-
implementation("com.github.spotbugs.snom:spotbugs-gradle-plugin:6.1.13")
11-
implementation("net.ltgt.gradle:gradle-errorprone-plugin:4.2.0")
12-
implementation("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.15.0")
13-
implementation("org.gradle:test-retry-gradle-plugin:1.6.2")
14-
implementation("io.freefair.gradle:lombok-plugin:8.14.2")
10+
implementation("com.github.spotbugs.snom:spotbugs-gradle-plugin:6.4.2")
11+
implementation("net.ltgt.gradle:gradle-errorprone-plugin:4.3.0")
12+
implementation("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.2")
13+
implementation("org.gradle:test-retry-gradle-plugin:1.6.4")
14+
implementation("io.freefair.gradle:lombok-plugin:9.0.0")
1515
}

buildSrc/src/main/kotlin/java-experiments.java-conventions.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
1818
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1919

20-
errorprone("com.google.errorprone:error_prone_core:2.40.0")
20+
errorprone("com.google.errorprone:error_prone_core:2.42.0")
2121
errorprone("jp.skypencil.errorprone.slf4j:errorprone-slf4j:0.1.29")
2222
}
2323

buildSrc/src/main/kotlin/java-experiments.pitest.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
pitest {
1313
verbosity = "DEFAULT"
1414
junit5PluginVersion = "1.2.3"
15-
pitestVersion = "1.20.0"
15+
pitestVersion = "1.21.0"
1616
threads = 4
1717
outputFormats = setOf("XML", "HTML")
1818
timestampedReports = false

gradle/wrapper/gradle-wrapper.jar

1.65 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
#
4-
# Copyright © 2015-2021 the original authors.
4+
# Copyright © 2015 the original authors.
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -114,7 +114,6 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

117-
CLASSPATH="\\\"\\\""
118117

119118

120119
# Determine the Java command to use to start the JVM.
@@ -172,7 +171,6 @@ fi
172171
# For Cygwin or MSYS, switch paths to Windows format before running java
173172
if "$cygwin" || "$msys" ; then
174173
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
175-
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
176174

177175
JAVACMD=$( cygpath --unix "$JAVACMD" )
178176

@@ -212,7 +210,6 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
212210

213211
set -- \
214212
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215-
-classpath "$CLASSPATH" \
216213
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
217214
"$@"
218215

gradlew.bat

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,10 @@ goto fail
7070
:execute
7171
@rem Setup the command line
7272

73-
set CLASSPATH=
7473

7574

7675
@rem Execute Gradle
77-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
76+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
7877

7978
:end
8079
@rem End local scope for the variables with windows NT shell

internal-bom/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ javaPlatform {
1010
}
1111

1212
dependencies {
13-
api(platform("org.junit:junit-bom:5.13.4"))
13+
api(platform("org.junit:junit-bom:6.0.0"))
1414
api(platform("org.testcontainers:testcontainers-bom:1.21.3"))
1515
api(platform("io.github.mfvanek:pg-index-health-bom:0.30.0"))
1616
api(platform("org.mockito:mockito-bom:5.20.0"))
@@ -20,7 +20,7 @@ dependencies {
2020
api("com.google.code.findbugs:jsr305:3.0.2")
2121
api("org.postgresql:postgresql:42.7.8")
2222
api("com.zaxxer:HikariCP:7.0.2")
23-
api("ch.qos.logback:logback-classic:1.5.18")
23+
api("ch.qos.logback:logback-classic:1.5.19")
2424
api("org.slf4j:slf4j-api:2.0.17")
2525
api("com.h2database:h2:2.3.232")
2626
api("javax.annotation:javax.annotation-api:1.3.2")

0 commit comments

Comments
 (0)