File tree Expand file tree Collapse file tree 9 files changed +15
-19
lines changed
Expand file tree Collapse file tree 9 files changed +15
-19
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
22
33plugins {
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
1414allprojects {
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
4949tasks {
5050 wrapper {
51- gradleVersion = " 8.14.3 "
51+ gradleVersion = " 9.1.0 "
5252 }
5353
5454 jar {
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ repositories {
77}
88
99dependencies {
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}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies {
1212pitest {
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
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 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 ;;
115115esac
116116
117- CLASSPATH=" \\\"\\\" "
118117
119118
120119# Determine the Java command to use to start the JVM.
172171# For Cygwin or MSYS, switch paths to Windows format before running java
173172if " $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
213211set -- \
214212 " -Dorg.gradle.appname=$APP_BASE_NAME " \
215- -classpath " $CLASSPATH " \
216213 -jar " $APP_HOME /gradle/wrapper/gradle-wrapper.jar" \
217214 " $@ "
218215
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ javaPlatform {
1010}
1111
1212dependencies {
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" )
You can’t perform that action at this time.
0 commit comments