-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
69 lines (52 loc) · 1.46 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
57
58
59
60
61
62
63
64
65
66
67
68
69
plugins {
id 'net.ltgt.apt' version '0.10'
}
group 'pl.epoint'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'javax.servlet',
name: 'servlet-api',
version: '2.5'
compile group: 'org.springframework',
name: 'spring-jdbc',
version: '4.3.13.RELEASE'
compile group: 'mysql',
name: 'mysql-connector-java',
version: '5.1.45'
compile group: 'com.google.guava',
name: 'guava',
version: '23.0'
compile group: 'org.apache.logging.log4j',
name: 'log4j-api',
version: '2.10.0'
compile group: 'org.apache.logging.log4j',
name: 'log4j-core',
version: '2.10.0'
compile group: 'com.fasterxml.jackson.dataformat',
name: 'jackson-dataformat-yaml',
version: '2.5.0'
compile group: 'org.jetbrains',
name: 'annotations',
version: '13.0'
compile group: 'org.apache.commons',
name: 'commons-lang3',
version: '3.7'
compile group: 'javax.ejb',
name: 'javax.ejb-api',
version: '3.2'
compileOnly group: 'org.projectlombok',
name:'lombok',
version: '1.16.20'
testCompile group: 'junit',
name: 'junit',
version: '4.12'
}
war {
archiveName = "products.war"
}