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

Make properties optional.

parent 54bc7ee4
No related branches found
No related tags found
No related merge requests found
Pipeline #8670 passed
......@@ -49,6 +49,7 @@ public class RelastTest extends DefaultTask {
this.compilerLocation = compilerLocation;
}
@Optional
@Input
public boolean isVerbose() {
return verbose;
......@@ -108,6 +109,7 @@ public class RelastTest extends DefaultTask {
this.grammarName = grammarName;
}
@Optional
@Input
public String getListClass() {
return listClass;
......@@ -117,6 +119,7 @@ public class RelastTest extends DefaultTask {
this.listClass = listClass;
}
@Optional
@Input
public String getJastAddList() {
return jastAddList;
......@@ -126,6 +129,7 @@ public class RelastTest extends DefaultTask {
this.jastAddList = jastAddList;
}
@Optional
@Input
public String getSerializer() {
return serializer;
......@@ -145,8 +149,8 @@ public class RelastTest extends DefaultTask {
this.runJastAdd = runJastAdd;
}
@Input
@Optional
@Input
public String getOutputDir() {
return outputDir;
}
......@@ -164,6 +168,7 @@ public class RelastTest extends DefaultTask {
this.packageName = packageName;
}
@Optional
@Input
public List<String> getExtraJastAddOptions() {
return extraJastAddOptions;
......@@ -177,6 +182,7 @@ public class RelastTest extends DefaultTask {
this.extraJastAddOptions.addAll(Arrays.asList(fileArray));
}
@Optional
@Input
public List<String> getMoreInputFiles() {
return moreInputFiles;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment