Skip to content

Commit

Permalink
Merge pull request #88 from nebula-plugins/update-gradle-wrapper
Browse files Browse the repository at this point in the history
Upgrade Gradle Wrapper to 8.12-rc-1
  • Loading branch information
rpalcolea authored Dec 13, 2024
2 parents 827b8d1 + e211ca8 commit 675b1e9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-rc-1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionSha256Sum=4d9d7ad4cf8842f279649213d2f87d8f7e9a03ae75ac4389517aa574b1404b2a
5 changes: 2 additions & 3 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down Expand Up @@ -203,7 +202,7 @@ fi


# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
DEFAULT_JVM_OPTS=

# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
Expand Down
2 changes: 1 addition & 1 deletion gradlew.bat
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ set APP_HOME=%DIRNAME%
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
set DEFAULT_JVM_OPTS=

@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class NebulaFacetPluginLauncherSpec extends BaseIntegrationTestKitSpec {
}
repositories {
maven { url '$mavenRepoFixture.mavenRepoDir.canonicalPath' }
maven { url = '$mavenRepoFixture.mavenRepoDir.canonicalPath' }
}
dependencies {
Expand Down Expand Up @@ -85,7 +85,7 @@ class NebulaFacetPluginLauncherSpec extends BaseIntegrationTestKitSpec {
}
repositories {
maven { url '$mavenRepoFixture.mavenRepoDir.canonicalPath' }
maven { url = '$mavenRepoFixture.mavenRepoDir.canonicalPath' }
}
dependencies {
Expand Down Expand Up @@ -130,7 +130,7 @@ class NebulaFacetPluginLauncherSpec extends BaseIntegrationTestKitSpec {
apply plugin: 'java'
repositories {
maven { url '$mavenRepoFixture.mavenRepoDir.canonicalPath' }
maven { url = '$mavenRepoFixture.mavenRepoDir.canonicalPath' }
}
dependencies {
Expand Down Expand Up @@ -361,7 +361,7 @@ public class HelloTest {
}
repositories {
maven { url '$mavenRepoFixture.mavenRepoDir.canonicalPath' }
maven { url = '$mavenRepoFixture.mavenRepoDir.canonicalPath' }
}
dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class NebulaFacetPluginSpec extends PluginProjectSpec {
}
integTest.runtimeClasspathConfigurationName == 'integTestRuntimeClasspath'

assert project.configurations.size() == 26
assert project.configurations.size() == 24

def integTestImplementationConf = project.configurations.getByName('integTestImplementation')
integTestImplementationConf
Expand Down

0 comments on commit 675b1e9

Please sign in to comment.