Skip to content
Open
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
d839859
Add Gradle support
May 24, 2020
4cfc67b
First commit (Level-1)
naranghardik16 Aug 19, 2021
4736ca7
Added Level-2 increment
naranghardik16 Aug 19, 2021
cfd5b25
Added Level-3 increment
naranghardik16 Aug 19, 2021
bd6934e
Added Level-4 Increment
naranghardik16 Aug 19, 2021
5ef0281
Added Exception handling
naranghardik16 Aug 19, 2021
1d94770
Added Level-6 increment
naranghardik16 Aug 19, 2021
b53bd2b
automate Ui testing
naranghardik16 Aug 19, 2021
702a6ac
Made minor changes (worked on organization)
naranghardik16 Aug 28, 2021
7ea4cc3
Level-7
naranghardik16 Aug 29, 2021
c13f776
Made minor changes
naranghardik16 Aug 30, 2021
17dcb8d
Revert "Level-7"
naranghardik16 Aug 30, 2021
cce678c
Made minor changes
naranghardik16 Aug 30, 2021
985e487
Level-8
naranghardik16 Aug 30, 2021
cb0f6ce
Resolving conflicts
naranghardik16 Aug 30, 2021
9a37325
Resolving conflict
naranghardik16 Aug 30, 2021
044eb74
Merge branch 'branch-Level-7'
naranghardik16 Aug 30, 2021
9c1a2a6
Merge branch 'branch-Level-8'
naranghardik16 Aug 30, 2021
9d62a81
A-MoreOOP
naranghardik16 Aug 31, 2021
58fff1d
Made minor changes
naranghardik16 Aug 31, 2021
8715041
Merge branch 'add-gradle-support'
naranghardik16 Aug 31, 2021
43765c6
Added support for testing
naranghardik16 Sep 1, 2021
21bd54f
Added JavaDoc
naranghardik16 Sep 1, 2021
d30698e
Added JavaDoc
naranghardik16 Sep 1, 2021
ee67ca5
Added CodingStandard
naranghardik16 Sep 1, 2021
d9c02fc
Added Level-9
naranghardik16 Sep 1, 2021
a3b3d47
Merge branch 'branch-A-CodingStandard'
naranghardik16 Sep 1, 2021
23ef5fb
Merge branch 'branch-Level-9'
naranghardik16 Sep 1, 2021
cd74b28
Merged all 3 branches and made minor changes
naranghardik16 Sep 1, 2021
b5b092f
Added GUI capabilities
naranghardik16 Sep 20, 2021
44a8d27
Merge branch 'branch-Level-10'
naranghardik16 Sep 20, 2021
d602943
Improve Code Quality
naranghardik16 Sep 20, 2021
a8ec3fc
Improve Code Quality
naranghardik16 Sep 20, 2021
b144d14
Improve formatting
naranghardik16 Sep 20, 2021
06559aa
Add Assertions
naranghardik16 Sep 20, 2021
faa775f
Merge pull request #3 from naranghardik16/branch-A-CodeQuality
naranghardik16 Sep 20, 2021
31b0bd6
Merge branch 'branch-A-Assertions'
naranghardik16 Sep 20, 2021
4349b1a
Merge pull request #2 from naranghardik16/branch-A-Assertions
naranghardik16 Sep 20, 2021
34dfcea
Add Extension C-Priority
naranghardik16 Sep 20, 2021
33cc82f
Merge branch 'branch-C-Priority'
naranghardik16 Sep 20, 2021
d05d812
Merge pull request #4 from naranghardik16/branch-C-Priority
naranghardik16 Sep 20, 2021
8b53d83
Merge branch 'master' of https://github.com/naranghardik16/ip
naranghardik16 Sep 20, 2021
ad63b5c
Make changes to text file
naranghardik16 Sep 20, 2021
a79fe1b
Add representative screenshot
naranghardik16 Sep 20, 2021
65614d9
Add User Guide
naranghardik16 Sep 20, 2021
4cfef5b
Set theme jekyll-theme-minimal
naranghardik16 Sep 20, 2021
f91b546
Set theme jekyll-theme-cayman
naranghardik16 Sep 20, 2021
fa07ae8
Add UserGuide
naranghardik16 Sep 20, 2021
17b437e
Set theme jekyll-theme-cayman
naranghardik16 Sep 20, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'com.github.johnrengelman.shadow' version '5.1.0'
}

repositories {
mavenCentral()
}

dependencies {
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.0'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.0'
}

test {
useJUnitPlatform()

testLogging {
events "passed", "skipped", "failed"

showExceptions true
exceptionFormat "full"
showCauses true
showStackTraces true
showStandardStreams = false
}
}

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

shadowJar {
archiveBaseName = "duke"
archiveClassifier = null
}

checkstyle {
toolVersion = '8.29'
}

run{
standardInput = System.in
}
9 changes: 9 additions & 0 deletions data/duke.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
T | 1 | new

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should the save files be uploaded to github?

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should leave duke.txt in the .gitignore file.

T | 0 | fly
T | 1 | new
T | 0 | return book
T | 0 | remove book
T | 1 | enjoy food
E | 1 | something | 02/08/2021 1600
D | 1 | eat | 02/08/2021 1600
T | 0 | running
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
183 changes: 183 additions & 0 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

103 changes: 103 additions & 0 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading