forked from AY1920S1-CS2113-T14-2/main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (41 loc) · 788 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
plugins {
id 'java'
id 'application'
id 'checkstyle'
id 'com.github.johnrengelman.shadow' version '5.1.0'
}
group 'seedu.duke'
version '0.1.0'
repositories {
mavenCentral()
}
shadowJar {
archiveBaseName = null
archiveVersion = "v1.3.1"
archiveClassifier = null
archiveAppendix = null
}
sourceSets{
main {
resources {
srcDirs = ['src/main/java']
}
}
}
checkstyle {
toolVersion = '8.23'
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.5.0'
compile group: 'com.massisframework', name: 'j-text-utils', version: '0.3.4'
}
test {
useJUnitPlatform()
}
application {
// Change this to your main class.
mainClassName = "duke/Duke"
}
run {
standardInput = System.in
}