-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
87 lines (68 loc) · 2.52 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
apply plugin: 'base'
apply plugin: 'war'
apply plugin: 'jetty'
apply plugin: 'java'
apply plugin: 'eclipse-wtp'
apply plugin: 'idea'
ext.springVersion='4.1.1.RELEASE'
ext.hibernateVersion='4.3.6.Final'
ext.hibernateValidatorVersion='4.3.6.Final'
ext.jUnitVersion = '4.11'
ext.mockitoVersion = '1.9.5'
ext.slf4jVersion = '1.7.5'
repositories {
mavenCentral()
}
dependencies {
providedCompile 'javax.servlet:javax.servlet-api:3.0.1'
// Log4j
compile ('log4j:log4j:1.2.17') {
exclude group:'ch.qos.logback', module:'logback-classic'
}
// Spring Framework
compile "org.springframework:spring-test:$springVersion"
compile ('org.springframework.data:spring-data-jpa:1.7.0.RELEASE') {
exclude group:"org.springframework", module:"spring-asm"
}
compile "org.springframework:spring-jdbc:$springVersion"
compile "org.springframework:spring-tx:$springVersion"
compile "org.springframework:spring-orm:$springVersion"
compile "org.springframework:spring-aop:$springVersion"
compile "org.springframework:spring-webmvc:$springVersion"
compile "org.springframework:spring-oxm:$springVersion"
// Websocket
compile "org.springframework.boot:spring-boot-starter-websocket:1.1.7.RELEASE"
compile "org.springframework:spring-messaging:$springVersion"
compile "org.springframework:spring-websocket:$springVersion"
// Annotation support
compile 'cglib:cglib-nodep:2.2.2'
compile 'org.aspectj:aspectjrt:1.6.12'
compile 'org.aspectj:aspectjweaver:1.6.12'
// Hibernate
compile "org.hibernate:hibernate-entitymanager:$hibernateVersion"
compile "org.hibernate:hibernate-core:$hibernateVersion"
compile "org.hibernate:hibernate-validator:$hibernateValidatorVersion"
compile "org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final"
// MySQL
compile 'mysql:mysql-connector-java:5.0.8'
// JUnit
compile "junit:junit:$jUnitVersion"
// Mockito
compile "org.mockito:mockito-all:$mockitoVersion"
// DBUnit
compile "com.github.springtestdbunit:spring-test-dbunit:1.0.0"
compile "org.dbunit:dbunit:2.4.9"
// Jackson (for JSON mapping of objects)
compile "com.fasterxml.jackson.core:jackson-databind:2.2.0"
compile "org.codehaus.jackson:jackson-mapper-asl:1.8.5"
// Commons
compile 'commons-codec:commons-codec:1.9'
// File upload
compile 'commons-fileupload:commons-fileupload:1.3.1'
compile 'commons-io:commons-io:2.4'
// Guava
compile 'com.google.guava:guava:18.0'
}
eclipse {
project.natures "org.springframework.ide.eclipse.core.springnature"
}