Skip to content

Commit

Permalink
Remove unused Main-Class parameter from Gradle plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored and jmartisk committed Nov 15, 2019
1 parent 8b26150 commit 643153c
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@
*/
public class QuarkusBuild extends QuarkusTask {

private String mainClass = "io.quarkus.runner.GeneratedMain";

private boolean uberJar;

private List<String> ignoredEntries = new ArrayList<>();
Expand All @@ -33,17 +31,6 @@ public QuarkusBuild() {
super("Quarkus builds a runner jar based on the build jar");
}

@Input
@Optional
public String getMainClass() {
return mainClass;
}

@Option(description = "Name of the main class generated by the quarkus build process", option = "main-class")
public void setMainClass(String mainClass) {
this.mainClass = mainClass;
}

@Optional
@Input
public boolean isUberJar() {
Expand Down

0 comments on commit 643153c

Please sign in to comment.