-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
44 lines (38 loc) · 1.32 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
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'war'
apply plugin: 'jetty'
repositories {
mavenCentral()
}
ext {
springVersion = '3.1+'
}
sourceCompatibility = 1.7
dependencies {
compile group: 'org.hibernate', name: 'hibernate-core', version: '3.6.10.Final'
compile group: 'org.hibernate', name: 'hibernate-entitymanager', version: '3.6.10.Final'
compile group: 'org.springframework', name: 'spring-core', version: springVersion
compile group: 'org.springframework', name: 'spring-context', version: springVersion
compile group: 'org.springframework', name: 'spring-orm', version: springVersion
compile group: 'org.springframework', name: 'spring-test', version: springVersion
compile group: 'org.springframework', name: 'spring-webmvc', version: springVersion
compile 'org.apache.httpcomponents:httpclient:4.0.1'
compile 'org.jsoup:jsoup:1.6.1'
compile 'javax.servlet:servlet-api:2.5'
compile 'org.slf4j:slf4j-api:1+'
compile 'org.slf4j:slf4j-log4j12:1+'
compile 'commons-dbcp:commons-dbcp:+'
compile 'postgresql:postgresql:9.1+'
testCompile 'org.testng:testng:+'
testCompile 'org.mockito:mockito-core:+'
testCompile 'org.apache.derby:derby:+'
}
httpPort = 8092
stopPort = 8091
test {
useTestNG()
}
task wrapper(type: Wrapper) {
gradleVersion = '1.6'
}