Skip to content

Commit

Permalink
create new jar file and edit file name from Launcher.java to Main.java
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnkai committed Sep 19, 2022
1 parent 4e9d991 commit 15d7db1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ test {
}

application {
mainClassName = "seedu.duke.Duke"
mainClassName = "duke.Main"
}

shadowJar {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/**
* A launcher class to workaround classpath issues.
*/
public class Launcher {
public class Main {
public static void main(String[] args) {
Application.launch(Duke.class, args);
}
Expand Down

0 comments on commit 15d7db1

Please sign in to comment.