-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
56 lines (42 loc) · 1.55 KB
/
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
50
51
52
53
54
55
56
plugins {
id 'java'
id 'war'
}
group 'dunder.mifflin'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
repositories {
jcenter()
mavenCentral()
}
war {
archiveFileName = 'regional.hs.war'
}
test {
useJUnitPlatform()
}
dependencies {
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.2'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.2'
// JavaEE 8
providedCompile group: 'javax', name: 'javaee-api', version: '8.0.1'
compile group: 'javax.servlet', name: 'javax.servlet-api', version: '4.0.1'
compile group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
compile group: 'javax.servlet.jsp.jstl', name: 'jstl', version: '1.2'
// JSON
compile group: 'com.github.cliftonlabs', name: 'json-simple', version: '3.1.0'
// QRCode
compile group: 'com.google.zxing', name: 'core', version: '3.4.0'
compile group: 'com.google.zxing', name: 'javase', version: '3.4.0'
// PDF
compile group: 'com.itextpdf', name: 'itextpdf', version: '5.5.13.1'
// XLS
compile group: 'org.apache.poi', name: 'poi-ooxml', version: '4.1.0'
// Persistance
compile group: 'org.jooq', name: 'jooq', version: '3.12.1'
compile group: 'org.jooq', name: 'jooq-meta', version: '3.12.1'
compile group: 'org.jooq', name: 'jooq-codegen', version: '3.12.1'
compile group: 'org.postgresql', name: 'postgresql', version: '42.2.7'
// Hashing
compile group: 'org.mindrot', name: 'jbcrypt', version: '0.4'
}