forked from CPEN-221/skel-CityNames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
44 lines (33 loc) · 933 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
plugins {
id 'java'
id 'application'
}
group 'ca.ubc.ece.cpen221'
version 'V1'
repositories {
mavenCentral()
}
ext {
junitJupiterVersion = "5.5.2"
junit4Version = "4.1.2"
}
dependencies {
implementation "org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}"
testImplementation(
// Uncomment to use junit4
"junit:junit:${junit4Version}",
"org.junit.jupiter:junit-jupiter-migrationsupport:${junitJupiterVersion}",
"org.junit.jupiter:junit-jupiter-params:${junitJupiterVersion}"
)
testRuntimeOnly(
// Uncomment to use junit4
"org.junit.vintage:junit-vintage-engine:${junitJupiterVersion}",
"org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}"
)
test {
useJUnitPlatform()
}
}
//dependencies {
// testImplementation group: 'junit', name: 'junit', version: '4.12'
//}