Skip to content

Commit

Permalink
Merge pull request #86 from ashleygoh1/v1.3-build-jar-trial
Browse files Browse the repository at this point in the history
build jar trial and fix bug
  • Loading branch information
ashleygoh1 authored Mar 29, 2024
2 parents 53eaebb + 6c8ebd0 commit 91365fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id 'jacoco'
}

mainClassName = 'seedu.address.Main'
mainClassName = 'seedu.internhub.Main'

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
Expand Down Expand Up @@ -70,7 +70,7 @@ dependencies {
}

shadowJar {
archiveFileName = 'addressbook.jar'
archiveFileName = 'internhub.jar'
}

defaultTasks 'clean', 'test'
2 changes: 1 addition & 1 deletion src/main/java/seedu/internhub/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/
public class MainApp extends Application {

public static final Version VERSION = new Version(0, 2, 2, true);
public static final Version VERSION = new Version(1, 3, 1, true);

private static final Logger logger = LogsCenter.getLogger(MainApp.class);

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/internhub/ui/HelpWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
public class HelpWindow extends UiPart<Stage> {

public static final String USERGUIDE_URL = "https://se-education.org/addressbook-level3/UserGuide.html";
public static final String USERGUIDE_URL = "https://ay2324s2-cs2103t-f14-1.github.io/tp/UserGuide.html";
public static final String HELP_MESSAGE = "Refer to the user guide: " + USERGUIDE_URL;

private static final Logger logger = LogsCenter.getLogger(HelpWindow.class);
Expand Down

0 comments on commit 91365fb

Please sign in to comment.