-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (38 loc) · 1.48 KB
/
build.gradle
File metadata and controls
43 lines (38 loc) · 1.48 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
apply plugin: 'groovy'
apply plugin: 'eclipse'
apply plugin: 'eclipse-wtp'
apply plugin: 'war'
sourceCompatibility = 1.7
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
compile "org.springframework:spring-context:3.2.2.RELEASE"
compile "org.springframework:spring-webmvc:3.2.2.RELEASE"
compile "org.springframework.data:spring-data-jpa:1.3.0.RELEASE"
compile "org.hibernate:hibernate-core:3.6.10.Final"
compile "org.hibernate:hibernate-entitymanager:3.6.10.Final"
compile "org.hibernate:hibernate-validator:4.3.1.Final"
compile "org.hsqldb:hsqldb:1.8.0.10"
compile "org.aspectj:aspectjrt:1.6.10"
compile "log4j:log4j:1.2.16"
compile "javax.inject:javax.inject:1"
compile "javax.servlet.jsp.jstl:jstl-api:1.2"
compile "org.glassfish.web:jstl-impl:1.2"
runtime "javax.servlet.jsp:jsp-api:2.1"
compile "org.thymeleaf:thymeleaf:2.0.16"
compile "org.thymeleaf:thymeleaf-spring3:2.0.16"
runtime "org.slf4j:slf4j-log4j12:1.7.1"
compile "org.codehaus.groovy:groovy-all:2.1.6"
compile "org.eclipse.jetty:jetty-server:9.1.0.v20131115"
compile "org.eclipse.jetty:jetty-servlet:9.1.0.v20131115"
compile "org.eclipse.jetty:jetty-servlets:9.1.0.v20131115"
compile "org.eclipse.jetty:jetty-webapp:9.1.0.v20131115"
testCompile "org.springframework:spring-test:3.1.0.RELEASE"
testCompile group: 'junit', name: 'junit', version: '4.+'
}
task wrapper(type: Wrapper) {
gradleVersion = '1.9'
}