-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (50 loc) · 2.28 KB
/
Copy pathbuild.gradle
File metadata and controls
66 lines (50 loc) · 2.28 KB
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
group 'org.thehellnet.smlgr.web'
version '0.2.0'
apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.8
targetCompatibility = 1.8
war.archiveName = "smlgr.war"
repositories {
mavenCentral()
}
dependencies {
compile "org.springframework:spring-core:4.2.2.RELEASE"
compile "org.springframework:spring-context:4.2.2.RELEASE"
compile "org.springframework:spring-context-support:4.2.2.RELEASE"
compile "org.springframework:spring-web:4.2.2.RELEASE"
compile "org.springframework:spring-webmvc:4.2.2.RELEASE"
compile "org.springframework:spring-test:4.2.2.RELEASE"
compile "org.springframework:spring-jdbc:4.2.2.RELEASE"
compile "org.springframework:spring-orm:4.2.2.RELEASE"
compile "org.springframework:spring-beans:4.2.2.RELEASE"
compile "org.springframework.data:spring-data-jpa:1.8.0.RELEASE"
compile "org.hibernate:hibernate-core:4.3.11.Final"
compile "org.hibernate:hibernate-c3p0:4.3.11.Final"
compile "org.hibernate:hibernate-entitymanager:4.3.11.Final"
compile "org.hibernate:hibernate-ehcache:4.3.11.Final"
compile "org.hibernate:hibernate-validator:4.3.2.Final"
compile "org.postgresql:postgresql:9.4-1205-jdbc42"
compile "javax.servlet:javax.servlet-api:3.1.0"
compile "javax.el:javax.el-api:3.0.0"
compile "org.aspectj:aspectjrt:1.8.7"
compile "org.aspectj:aspectjtools:1.8.7"
compile "org.aspectj:aspectjweaver:1.8.7"
compile "org.apache.logging.log4j:log4j-core:2.4.1"
compile "cglib:cglib-nodep:3.2.0"
compile "commons-io:commons-io:2.4"
compile "commons-codec:commons-codec:1.10"
compile "org.apache.commons:commons-lang3:3.4"
compile "org.apache.commons:commons-dbcp2:2.1.1"
compile "com.fasterxml.jackson.core:jackson-databind:2.6.3"
compile "com.fasterxml.jackson.core:jackson-core:2.6.3"
compile "com.fasterxml.jackson.core:jackson-annotations:2.6.3"
compile "com.fasterxml.jackson.core:jackson-databind:2.6.3"
compile "com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:2.6.3"
compile "joda-time:joda-time:2.9"
compile "joda-time:joda-time-hibernate:1.4"
compile "org.joda:joda-convert:1.8.1"
compile "org.jadira.usertype:usertype.core:4.0.0.GA"
compile "org.jadira.usertype:usertype.spi:4.0.0.GA"
testCompile "junit:junit:4.12"
}