Skip to content

Commit aa28bab

Browse files
authored
Revert "add: ci for java (#6)"
This reverts commit 64354c6.
1 parent 64354c6 commit aa28bab

File tree

6 files changed

+7
-102
lines changed

6 files changed

+7
-102
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 93 deletions
This file was deleted.

build.gradle

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@ plugins {
33
id 'application'
44
}
55

6-
java {
7-
toolchain {
8-
languageVersion = JavaLanguageVersion.of(25)
9-
}
10-
}
11-
126
repositories {
137
mavenCentral()
148
}

gradle/wrapper/gradle-wrapper.jar

-1.83 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-9.2.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

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

33
#
4-
# Copyright © 2015 the original authors.
4+
# Copyright © 2015-2021 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,6 +114,7 @@ case "$( uname )" in #(
114114
NONSTOP* ) nonstop=true ;;
115115
esac
116116

117+
CLASSPATH="\\\"\\\""
117118

118119

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

175177
JAVACMD=$( cygpath --unix "$JAVACMD" )
176178

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

211213
set -- \
212214
"-Dorg.gradle.appname=$APP_BASE_NAME" \
215+
-classpath "$CLASSPATH" \
213216
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
214217
"$@"
215218

gradlew.bat

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

73+
set CLASSPATH=
7374

7475

7576
@rem Execute Gradle
76-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*
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" %*
7778

7879
:end
7980
@rem End local scope for the variables with windows NT shell

0 commit comments

Comments
 (0)