Skip to content

Commit

Permalink
Merge pull request #5402 from gastaldi/unused_gradle
Browse files Browse the repository at this point in the history
Remove unused Main-Class parameter from Gradle plugin
  • Loading branch information
geoand authored Nov 14, 2019
2 parents 55847c0 + ba7e4de commit 6fe48fc
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 6fe48fc

Please sign in to comment.