Skip to content
Snippets Groups Projects
Commit 03e8acd1 authored by René Schöne's avatar René Schöne
Browse files

0.2.13

- Gradle 7.4
- use properties file for version
- use dev version for now also on master
parent b6209115
No related branches found
No related tags found
No related merge requests found
Pipeline #12910 passed
Showing with 95 additions and 74 deletions
...@@ -32,8 +32,10 @@ publish: ...@@ -32,8 +32,10 @@ publish:
image: openjdk:11 image: openjdk:11
stage: publish stage: publish
script: script:
- "./gradlew setDevVersionForCI"
- "./gradlew publishPluginMavenPublicationToMavenRepository" - "./gradlew publishPluginMavenPublicationToMavenRepository"
only: only:
- dev
- master - master
pages: pages:
......
...@@ -5,7 +5,6 @@ plugins { ...@@ -5,7 +5,6 @@ plugins {
} }
group 'org.jastadd.preprocessor' group 'org.jastadd.preprocessor'
version '0.2.12'
mainClassName = 'org.jastadd.preprocessor.testing.doc.DocumentationCreator' mainClassName = 'org.jastadd.preprocessor.testing.doc.DocumentationCreator'
gradlePlugin { gradlePlugin {
...@@ -17,6 +16,39 @@ gradlePlugin { ...@@ -17,6 +16,39 @@ gradlePlugin {
} }
} }
def versionFile = 'src/main/resources/PreprocessorTesting.properties'
def oldProps = new Properties()
try {
file(versionFile).withInputStream { stream -> oldProps.load(stream) }
version = oldProps['version']
} catch (ignored) {
// this happens, if either the properties file is not present, or cannot be read from
throw new GradleException("File ${versionFile} not found or unreadable. Aborting.")
}
task newVersion() {
doFirst {
def props = new Properties()
props['version'] = value
props.store(file(versionFile).newWriter(), null)
}
}
task printVersion() {
doLast {
println(version)
}
}
task setDevVersionForCI() {
doFirst {
def props = new Properties()
props['version'] = version + "-$System.env.CI_PIPELINE_IID"
props.store(file(versionFile).newWriter(), null)
}
}
//830 //830
publishing { publishing {
publications { publications {
...@@ -28,7 +60,7 @@ publishing { ...@@ -28,7 +60,7 @@ publishing {
} }
repositories { repositories {
maven { maven {
url "https://git-st.inf.tu-dresden.de/api/v4/projects/830/packages/maven" url "https://git-st.inf.tu-dresden.de/api/v4/projects/$System.env.CI_PROJECT_ID/packages/maven"
// Uncomment the following lines to publish manually (and comment out the other credentials section) // Uncomment the following lines to publish manually (and comment out the other credentials section)
// credentials(HttpHeaderCredentials) { // credentials(HttpHeaderCredentials) {
// name = "Private-Token" // name = "Private-Token"
......
No preview for this file type
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
...@@ -82,6 +82,7 @@ esac ...@@ -82,6 +82,7 @@ esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM. # Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
...@@ -129,6 +130,7 @@ fi ...@@ -129,6 +130,7 @@ fi
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"` APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"` JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath # We build the pattern for arguments to be converted via cygpath
...@@ -154,19 +156,19 @@ if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then ...@@ -154,19 +156,19 @@ if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
else else
eval `echo args$i`="\"$arg\"" eval `echo args$i`="\"$arg\""
fi fi
i=$((i+1)) i=`expr $i + 1`
done done
case $i in case $i in
(0) set -- ;; 0) set -- ;;
(1) set -- "$args0" ;; 1) set -- "$args0" ;;
(2) set -- "$args0" "$args1" ;; 2) set -- "$args0" "$args1" ;;
(3) set -- "$args0" "$args1" "$args2" ;; 3) set -- "$args0" "$args1" "$args2" ;;
(4) set -- "$args0" "$args1" "$args2" "$args3" ;; 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac esac
fi fi
...@@ -175,14 +177,9 @@ save () { ...@@ -175,14 +177,9 @@ save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " " echo " "
} }
APP_ARGS=$(save "$@") APP_ARGS=`save "$@"`
# Collect all arguments for the java command, following the shell quoting and substitution rules # Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
cd "$(dirname "$0")"
fi
exec "$JAVACMD" "$@" exec "$JAVACMD" "$@"
...@@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=. ...@@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0 set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME% set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
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. @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="-Xmx64m" "-Xms64m"
...@@ -37,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome ...@@ -37,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1 %JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init if "%ERRORLEVEL%" == "0" goto execute
echo. echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
...@@ -51,7 +54,7 @@ goto fail ...@@ -51,7 +54,7 @@ goto fail
set JAVA_HOME=%JAVA_HOME:"=% set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init if exist "%JAVA_EXE%" goto execute
echo. echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
...@@ -61,28 +64,14 @@ echo location of your Java installation. ...@@ -61,28 +64,14 @@ echo location of your Java installation.
goto fail goto fail
:init
@rem Get command-line arguments, handling Windows variants
if not "%OS%" == "Windows_NT" goto win9xME_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
:execute :execute
@rem Setup the command line @rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle @rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end :end
@rem End local scope for the variables with windows NT shell @rem End local scope for the variables with windows NT shell
......
package org.jastadd.preprocessor.testing.plugin; package org.jastadd.preprocessor.testing.plugin;
import org.gradle.api.tasks.Input; import org.gradle.api.tasks.*;
import org.gradle.api.tasks.InputFiles;
import org.gradle.api.tasks.Optional;
import org.gradle.api.tasks.OutputDirectory;
import org.jastadd.preprocessor.testing.doc.Description; import org.jastadd.preprocessor.testing.doc.Description;
import java.io.File; import java.io.File;
...@@ -32,14 +29,14 @@ public interface JastAddConfiguration { ...@@ -32,14 +29,14 @@ public interface JastAddConfiguration {
@Description(value = "Do not run JastAdd") @Description(value = "Do not run JastAdd")
@Optional @Optional
@Input @Input
boolean isSkipRun(); Boolean isSkipRun();
void setSkipRun(boolean skipRun); void setSkipRun(Boolean skipRun);
@Description(value = "Add more options not directly supported") @Description(value = "Add more options not directly supported")
@Optional @Internal
@Input
List<String> getExtraOptions(); List<String> getExtraOptions();
void setExtraOptions(List<String> extraOptions); void setExtraOptions(List<String> extraOptions);
@Input
default List<String> getExtraOptionsOrDefault() { default List<String> getExtraOptionsOrDefault() {
return getExtraOptions() != null ? getExtraOptions() : Collections.emptyList(); return getExtraOptions() != null ? getExtraOptions() : Collections.emptyList();
} }
......
...@@ -2,6 +2,7 @@ package org.jastadd.preprocessor.testing.plugin; ...@@ -2,6 +2,7 @@ package org.jastadd.preprocessor.testing.plugin;
import org.gradle.api.tasks.Input; import org.gradle.api.tasks.Input;
import org.gradle.api.tasks.InputFiles; import org.gradle.api.tasks.InputFiles;
import org.gradle.api.tasks.Internal;
import org.gradle.api.tasks.Optional; import org.gradle.api.tasks.Optional;
import org.jastadd.preprocessor.testing.doc.Description; import org.jastadd.preprocessor.testing.doc.Description;
...@@ -34,26 +35,26 @@ public interface RagConnectConfiguration { ...@@ -34,26 +35,26 @@ public interface RagConnectConfiguration {
@Description(value = "Log read endpoints", correspondingParameter = "--logReads") @Description(value = "Log read endpoints", correspondingParameter = "--logReads")
@Optional @Optional
@Input @Input
boolean isLogReads(); Boolean isLogReads();
void setLogReads(boolean logReads); void setLogReads(Boolean logReads);
@Description(value = "Log write endpoints", correspondingParameter = "--logWrites") @Description(value = "Log write endpoints", correspondingParameter = "--logWrites")
@Optional @Optional
@Input @Input
boolean isLogWrites(); Boolean isLogWrites();
void setLogWrites(boolean logWrites); void setLogWrites(Boolean logWrites);
@Description(value = "Log incremental activities", correspondingParameter = "--logIncremental") @Description(value = "Log incremental activities", correspondingParameter = "--logIncremental")
@Optional @Optional
@Input @Input
boolean isLogIncremental(); Boolean isLogIncremental();
void setLogIncremental(boolean loggIncremental); void setLogIncremental(Boolean logIncremental);
@Description(value = "Be more verbose during compilation", correspondingParameter = "--verbose") @Description(value = "Be more verbose during compilation", correspondingParameter = "--verbose")
@Optional @Optional
@Input @Input
boolean isVerbose(); Boolean isVerbose();
void setVerbose(boolean verbose); void setVerbose(Boolean verbose);
@Description(value = "Set protocols to be used", correspondingParameter = "--protocols") @Description(value = "Set protocols to be used", correspondingParameter = "--protocols")
@Optional @Optional
...@@ -62,10 +63,10 @@ public interface RagConnectConfiguration { ...@@ -62,10 +63,10 @@ public interface RagConnectConfiguration {
void setProtocols(List<String> protocols); void setProtocols(List<String> protocols);
@Description(value = "Add more options not directly supported") @Description(value = "Add more options not directly supported")
@Optional @Internal
@Input
List<String> getExtraOptions(); List<String> getExtraOptions();
void setExtraOptions(List<String> extraOptions); void setExtraOptions(List<String> extraOptions);
@Input
default List<String> getExtraOptionsOrDefault() { default List<String> getExtraOptionsOrDefault() {
return getExtraOptions() != null ? getExtraOptions() : Collections.emptyList(); return getExtraOptions() != null ? getExtraOptions() : Collections.emptyList();
} }
......
...@@ -38,7 +38,7 @@ public abstract class RagConnectTest extends RelastTest { ...@@ -38,7 +38,7 @@ public abstract class RagConnectTest extends RelastTest {
} }
@OutputFiles @OutputFiles
public List<File> grammarFilesGeneratedByRagconnect() { public List<File> getGrammarFilesGeneratedByRagconnect() {
// files are RagConnect.relast and <INPUT_GRAMMAR(s)>.relast // files are RagConnect.relast and <INPUT_GRAMMAR(s)>.relast
List<File> result = new ArrayList<>(); List<File> result = new ArrayList<>();
result.add(resolveOutputDir("RagConnect.relast")); result.add(resolveOutputDir("RagConnect.relast"));
...@@ -52,7 +52,7 @@ public abstract class RagConnectTest extends RelastTest { ...@@ -52,7 +52,7 @@ public abstract class RagConnectTest extends RelastTest {
} }
@OutputFiles @OutputFiles
public List<File> aspectFilesGeneratedByRagconnect() { public List<File> getAspectFilesGeneratedByRagconnect() {
// file is only RagConnect.jadd // file is only RagConnect.jadd
List<File> result = new ArrayList<>(); List<File> result = new ArrayList<>();
result.add(resolveOutputDir("RagConnect.jadd")); result.add(resolveOutputDir("RagConnect.jadd"));
...@@ -73,8 +73,8 @@ public abstract class RagConnectTest extends RelastTest { ...@@ -73,8 +73,8 @@ public abstract class RagConnectTest extends RelastTest {
// delete generated files // delete generated files
project.delete(deleteSpec -> { project.delete(deleteSpec -> {
deleteSpec.delete(grammarFilesGeneratedByRagconnect()); deleteSpec.delete(getGrammarFilesGeneratedByRagconnect());
deleteSpec.delete(aspectFilesGeneratedByRagconnect()); deleteSpec.delete(getAspectFilesGeneratedByRagconnect());
}); });
// run ragconnect first // run ragconnect first
...@@ -119,11 +119,11 @@ public abstract class RagConnectTest extends RelastTest { ...@@ -119,11 +119,11 @@ public abstract class RagConnectTest extends RelastTest {
// now run relast + jastadd // now run relast + jastadd
getRelast().setInputFiles(grammarFilesGeneratedByRagconnect()); getRelast().setInputFiles(getGrammarFilesGeneratedByRagconnect());
if (getJastadd().getInputFiles() == null) { if (getJastadd().getInputFiles() == null) {
getJastadd().setInputFiles(new ArrayList<>()); getJastadd().setInputFiles(new ArrayList<>());
} }
for (File file : aspectFilesGeneratedByRagconnect()) { for (File file : getAspectFilesGeneratedByRagconnect()) {
if (getJastadd().getInputFiles().contains(file)) { if (getJastadd().getInputFiles().contains(file)) {
getLogger().warn("Input file to JastAdd already known: {} - Remove from jastadd.inputFiles!", file); getLogger().warn("Input file to JastAdd already known: {} - Remove from jastadd.inputFiles!", file);
} else { } else {
......
...@@ -2,6 +2,7 @@ package org.jastadd.preprocessor.testing.plugin; ...@@ -2,6 +2,7 @@ package org.jastadd.preprocessor.testing.plugin;
import org.gradle.api.tasks.Input; import org.gradle.api.tasks.Input;
import org.gradle.api.tasks.InputFiles; import org.gradle.api.tasks.InputFiles;
import org.gradle.api.tasks.Internal;
import org.gradle.api.tasks.Optional; import org.gradle.api.tasks.Optional;
import org.jastadd.preprocessor.testing.doc.Description; import org.jastadd.preprocessor.testing.doc.Description;
...@@ -19,8 +20,8 @@ public interface RelastConfiguration { ...@@ -19,8 +20,8 @@ public interface RelastConfiguration {
@Description(value = "Use JastAdd like API for relations", correspondingParameter = "--useJastAddNames") @Description(value = "Use JastAdd like API for relations", correspondingParameter = "--useJastAddNames")
@Optional @Optional
@Input @Input
boolean isUseJastAddNames(); Boolean isUseJastAddNames();
void setUseJastAddNames(boolean useJastAddNames); void setUseJastAddNames(Boolean useJastAddNames);
@Description(value = "Name of resulting grammar (can be a path)", correspondingParameter = "--grammarName") @Description(value = "Name of resulting grammar (can be a path)", correspondingParameter = "--grammarName")
@Input @Input
...@@ -36,14 +37,14 @@ public interface RelastConfiguration { ...@@ -36,14 +37,14 @@ public interface RelastConfiguration {
@Description(value = "Do not write any files", correspondingParameter = "--file") @Description(value = "Do not write any files", correspondingParameter = "--file")
@Optional @Optional
@Input @Input
boolean isNoWriteToFile(); Boolean isNoWriteToFile();
void setNoWriteToFile(boolean noWriteToFile); void setNoWriteToFile(Boolean noWriteToFile);
@Description(value = "Do not generate resolverHelper", correspondingParameter = "--resolverHelper") @Description(value = "Do not generate resolverHelper", correspondingParameter = "--resolverHelper")
@Optional @Optional
@Input @Input
boolean isNoResolverHelper(); Boolean isNoResolverHelper();
void setNoResolverHelper(boolean noResolverHelper); void setNoResolverHelper(Boolean noResolverHelper);
@Description(value = "Class to be used for relations", correspondingParameter = "--listClass") @Description(value = "Class to be used for relations", correspondingParameter = "--listClass")
@Optional @Optional
...@@ -52,22 +53,22 @@ public interface RelastConfiguration { ...@@ -52,22 +53,22 @@ public interface RelastConfiguration {
void setListClass(String listClass); void setListClass(String listClass);
@Description(value = "Activate serialization, and set its implementation", correspondingParameter = "--serializer") @Description(value = "Activate serialization, and set its implementation", correspondingParameter = "--serializer")
@Optional @Internal
@Input
String getSerializer(); String getSerializer();
void setSerializer(String serializer); void setSerializer(String serializer);
@Description(value = "Be more verbose during compilation") @Description(value = "Be more verbose during compilation")
@Optional @Optional
@Input @Input
boolean isVerbose(); Boolean isVerbose();
void setVerbose(boolean verbose); void setVerbose(Boolean verbose);
@Description(value = "Add more options not directly supported") @Description(value = "Add more options not directly supported")
@Optional @Optional
@Input @Input
List<String> getExtraOptions(); List<String> getExtraOptions();
void setExtraOptions(List<String> extraOptions); void setExtraOptions(List<String> extraOptions);
@Input
default List<String> getExtraOptionsOrDefault() { default List<String> getExtraOptionsOrDefault() {
return getExtraOptions() != null ? getExtraOptions() : Collections.emptyList(); return getExtraOptions() != null ? getExtraOptions() : Collections.emptyList();
} }
......
...@@ -91,7 +91,7 @@ public abstract class RelastTest extends DefaultTask { ...@@ -91,7 +91,7 @@ public abstract class RelastTest extends DefaultTask {
if (getRelast().isVerbose()) { if (getRelast().isVerbose()) {
System.out.println("Pre processing, running relast"); System.out.println("Pre processing, running relast");
} }
// then, run relast pre processing // then, run relast pre-processing
project.getPlugins().withType(JavaPlugin.class, javaPlugin -> { project.getPlugins().withType(JavaPlugin.class, javaPlugin -> {
SourceSetContainer sourceSets = (SourceSetContainer) project.getProperties().get("sourceSets"); SourceSetContainer sourceSets = (SourceSetContainer) project.getProperties().get("sourceSets");
FileCollection runtimeClasspath = sourceSets.getByName(SourceSet.MAIN_SOURCE_SET_NAME).getRuntimeClasspath(); FileCollection runtimeClasspath = sourceSets.getByName(SourceSet.MAIN_SOURCE_SET_NAME).getRuntimeClasspath();
...@@ -129,7 +129,7 @@ public abstract class RelastTest extends DefaultTask { ...@@ -129,7 +129,7 @@ public abstract class RelastTest extends DefaultTask {
args.add("--grammarName=" + pathToAbsoluteProject(getRelast().getGrammarName())); args.add("--grammarName=" + pathToAbsoluteProject(getRelast().getGrammarName()));
args.addAll(getRelast().getExtraOptionsOrDefault()); args.addAll(getRelast().getExtraOptionsOrDefault());
if (getRelast().isVerbose()) { if (getRelast().isVerbose()) {
System.out.println("Start relast with args: " + args + " and main: " + javaExecSpec.getMain()); System.out.println("Start relast with args: " + args + " and main: " + javaExecSpec.getMainClass());
} }
javaExecSpec.args(args); javaExecSpec.args(args);
}).assertNormalExitValue(); }).assertNormalExitValue();
......
#Tue Mar 08 14:00:49 CET 2022
version=0.2.13
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment