Skip to content

Commit

Permalink
updated com.google.guava version
Browse files Browse the repository at this point in the history
  • Loading branch information
tanya732 committed Sep 19, 2024
1 parent 33a67fa commit 5645355
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {

dependencies {
// https://github.com/melix/japicmp-gradle-plugin/issues/36
classpath 'com.google.guava:guava:28.2-jre'
classpath 'com.google.guava:guava:31.1-jre'
}
}

Expand All @@ -23,7 +23,7 @@ repositories {
apply from: rootProject.file('gradle/versioning.gradle')

version = getVersionFromFile()
group = 'com.auth0'
group = GROUP
logger.lifecycle("Using version ${version} for ${name} group $group")

jacocoTestReport {
Expand Down Expand Up @@ -60,7 +60,7 @@ project.afterEvaluate {
tasks.register(taskName, Test) {
def versionToUse = taskName.split("-").getAt(1) as Integer
description = "Runs unit tests on Java version ${versionToUse}."
println "Test will be running in ${versionToUse}"
project.logger.quiet("Test will be running in ${versionToUse}")
group = 'verification'
javaLauncher.set(javaToolchains.launcherFor {
languageVersion = JavaLanguageVersion.of(versionToUse)
Expand Down Expand Up @@ -119,7 +119,7 @@ ext {
jupiterVersion = '5.9.3'

baselineCompareVersion = '2.0.0'
testInJavaVersions = [8, 11, 17]
testInJavaVersions = [8, 11, 17, 21]
}

dependencies {
Expand Down
1 change: 0 additions & 1 deletion gradle/maven-publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ publishing {
artifactId = POM_ARTIFACT_ID
version = getVersionName()

//artifact("$buildDir/libs/${project.name}-${version}.jar")
artifact sourcesJar
artifact javadocJar

Expand Down

0 comments on commit 5645355

Please sign in to comment.