-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (28 loc) · 1.09 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
apply plugin: 'java'
apply plugin: 'jetty'
apply plugin: 'war'
apply plugin: 'idea'
sourceCompatibility = 1.6
targetCompatibility = 1.6
repositories {
mavenCentral()
}
dependencies {
compile 'org.mybatis:mybatis:3.1.1',
'org.mybatis:mybatis-spring:1.1.1',
'javax.servlet:servlet-api:2.5',
'org.springframework:spring-core:3.1.1.RELEASE',
'org.springframework:spring-webmvc:3.1.1.RELEASE',
'org.springframework:spring-web:3.1.1.RELEASE',
'org.springframework.security:spring-security-core:3.1.1.RELEASE',
'org.springframework.security:spring-security-config:3.1.1.RELEASE',
'org.springframework.security:spring-security-web:3.1.1.RELEASE',
'commons-lang:commons-lang:2.6',
'commons-dbcp:commons-dbcp:1.4',
'com.h2database:h2:1.3.167',
'org.freemarker:freemarker:2.3.19'
testCompile 'junit:junit:4.10',
'org.testng:testng:6.1.1',
'org.springframework:spring-test:3.1.1.RELEASE',
'org.mockito:mockito-all:1.9.0'
}