This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
46 lines (37 loc) · 1.56 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
subprojects {
apply plugin: 'scala'
springSecVersion = "3.1.3.RELEASE"
springVersion = "3.2.2.RELEASE"
repositories {
mavenLocal()
mavenCentral()
mavenRepo urls: "http://maven.springframework.org/snapshot"
}
dependencies {
compile 'org.scala-lang:scala-library:2.9.3',
"org.springframework:spring-core:$springVersion",
"org.springframework:spring-context:$springVersion",
"org.springframework:spring-beans:$springVersion",
"org.springframework:spring-aop:$springVersion",
"org.springframework:spring-web:$springVersion",
"org.springframework:spring-jdbc:$springVersion",
"org.springframework:spring-tx:$springVersion",
"org.springframework.security:spring-security-core:$springSecVersion",
"org.springframework.security:spring-security-web:$springSecVersion",
"org.springframework.security:spring-security-config:$springSecVersion",
"org.springframework.security:spring-security-openid:$springSecVersion",
'javax.servlet:servlet-api:2.5'
runtime 'org.slf4j:jcl-over-slf4j:1.7.5',
'ch.qos.logback:logback-classic:1.0.11',
'cglib:cglib-nodep:2.2.2'
testCompile 'org.scalatest:scalatest_2.9.2:1.9.1',
'org.mockito:mockito-all:1.9.5'
}
}
project('testapp') {
apply plugin: 'war'
apply plugin: 'jetty'
dependencies {
compile project(':core')
}
}