Skip to content

Commit

Permalink
Merge pull request nus-cs2103-AY2425S1#88 from weijianwong/branch-sma…
Browse files Browse the repository at this point in the history
…ll-edits

Fix issues with jar file built using Gradle
  • Loading branch information
curtischang2510 authored Oct 22, 2024
2 parents 5a4d614 + 0a394f0 commit b73cba5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dependencies {
}

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

defaultTasks 'clean', 'test'
10 changes: 5 additions & 5 deletions src/main/java/tuteez/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,19 @@ public static Person[] getSamplePersons() {
getTagSet("Chemistry"), getLessonSet("monday 0900-1000")),
new Person(new Name("Bernice Yu"), new Phone("99272758"), new Email("[email protected]"),
new Address("Blk 30 Lorong 3 Serangoon Gardens, #07-18"), TelegramUsername.of("bernice_yu"),
getTagSet("Physics", "Sec 4"), getLessonSet("tuesday 1000-1100")),
getTagSet("Physics"), getLessonSet("tuesday 1000-1100")),
new Person(new Name("Charlotte Oliveiro"), new Phone("93210283"), new Email("[email protected]"),
new Address("Blk 11 Ang Mo Kio Street 74, #11-04"), TelegramUsername.of("charlotte_oliveiro"),
getTagSet("Primary 6"), getLessonSet("wednesday 1000-1200")),
getTagSet("Math"), getLessonSet("wednesday 1000-1200")),
new Person(new Name("David Li"), new Phone("91031282"), new Email("[email protected]"),
new Address("Blk 436 Serangoon Gardens Street 26, #16-43"), TelegramUsername.of("david_li"),
getTagSet("JC math"), getLessonSet("friday 1000-1100")),
getTagSet("English"), getLessonSet("friday 1000-1100")),
new Person(new Name("Irfan Ibrahim"), new Phone("92492021"), new Email("[email protected]"),
new Address("Blk 47 Tampines Street 20, #17-35"), TelegramUsername.of("irfan_ibrahim"),
getTagSet("Uni math"), getLessonSet("saturday 0900-1100")),
getTagSet("Biology"), getLessonSet("saturday 0900-1100")),
new Person(new Name("Roy Balakrishnan"), new Phone("92624417"), new Email("[email protected]"),
new Address("Blk 45 Aljunied Street 85, #11-31"), TelegramUsername.of("roy_balakrishnan"),
getTagSet("secondary science"), getLessonSet("sunday 0900-1100"))
getTagSet("Science"), getLessonSet("sunday 0900-1100"))
};
}

Expand Down

0 comments on commit b73cba5

Please sign in to comment.