forked from apereo/cas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
21 lines (20 loc) · 911 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
description = 'Apereo CAS X.509 Client Certificate Support'
dependencies {
compile project(':cas-server-core-authentication')
compile project(':cas-server-core-util')
compile project(':cas-server-core-web')
compile libraries.bouncycastle
compile libraries.spring
compile libraries.ehcache
compile libraries.ldaptive
compile libraries.hibernate
testCompile project(':cas-server-support-generic')
testCompile project(path: ":cas-server-support-ldap", configuration: "tests")
testCompile libraries.tests
testCompile project(':cas-server-core-logout')
testCompile project(':cas-server-core-services')
testCompile project(':cas-server-core')
testCompile project(':cas-server-core-monitor')
testCompile project(path: ":cas-server-core-authentication", configuration: "tests")
testCompile project(path: ":cas-server-core", configuration: "tests")
}