-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
37 lines (29 loc) · 910 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
plugins {
id 'java'
}
jar {
archivesBaseName = "NBA-Excel"
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes "Main-class": "edu.virginia.cs.nbateams.Main"
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
group 'edu.virginia.cs.nbateams'
version '1.1'
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.json', name: 'json', version: '20220320'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.2.2'
runtimeOnly group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.18.0'
testImplementation group: 'org.mockito', name: 'mockito-core', version: '4.7.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
}
test {
useJUnitPlatform()
}