Skip to content

Commit

Permalink
Updated Gradle to 8.2.1 (#269)
Browse files Browse the repository at this point in the history
Co-authored-by: i.n.vakhrushev <i.n.vakhrushev@tinkoff.ru>
  • Loading branch information
mfvanek and i.n.vakhrushev committed Aug 4, 2023
1 parent 316ae2a commit e80f375
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
id("pmd")
id("java-test-fixtures")
id("net.ltgt.errorprone") version "3.1.0"
id("com.github.spotbugs") version "5.0.14"
id("com.github.spotbugs") version "5.1.1"
id("org.sonarqube") version "4.3.0.3225"
id("info.solidsoft.pitest") version "1.9.11"
id("org.gradle.test-retry") version "1.5.4"
Expand Down Expand Up @@ -56,7 +56,7 @@ subprojects {
testImplementation("org.junit.jupiter:junit-jupiter-api")

checkstyle("com.thomasjensen.checkstyle.addons:checkstyle-addons:7.0.1")
errorprone("com.google.errorprone:error_prone_core:2.20.0")
errorprone("com.google.errorprone:error_prone_core:2.21.0")
}

java {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
5 changes: 4 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,13 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencyResolutionManagement {
library("mockito-core", "org.mockito:mockito-core:5.4.0")
library("awaitility", "org.awaitility:awaitility:4.2.0")
library("apache-commons-lang3", "org.apache.commons:commons-lang3:3.13.0")
library("equalsverifier", "nl.jqno.equalsverifier:equalsverifier:3.15")
library("equalsverifier", "nl.jqno.equalsverifier:equalsverifier:3.15.1")
library("pitest-dashboard-reporter", "it.mulders.stryker:pit-dashboard-reporter:0.2.1")
version("pitest-junit5Plugin", "1.2.0")
version("pitest-core", "1.14.1")
Expand Down

0 comments on commit e80f375

Please sign in to comment.