forked from Netflix/genie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
48 lines (40 loc) · 1.91 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
47
48
dependencies {
/*******************************
* Compile Dependencies
*******************************/
compile(project(":genie-web"))
compile(project(":genie-ui"))
compile("org.bitbucket.b_c:jose4j")
compile("org.springframework.boot:spring-boot-starter-data-redis")
compile("org.springframework.boot:spring-boot-starter-security")
compile("org.springframework.security:spring-security-jwt")
compile("org.springframework.security.extensions:spring-security-saml2-core") {
exclude group: "org.bouncycastle", module: "bcprov-jdk15"
}
compile("org.springframework.security.oauth:spring-security-oauth2")
// TODO: Remove this as they move features into core spring security
// https://spring.io/blog/2018/01/30/next-generation-oauth-2-0-support-with-spring-security
compile("org.springframework.security.oauth.boot:spring-security-oauth2-autoconfigure")
compile("org.springframework.session:spring-session-core")
/*******************************
* Provided Dependencies
*******************************/
/*******************************
* Optional Dependencies
*******************************/
compileOnly("org.springframework.boot:spring-boot-configuration-processor")
/*******************************
* Runtime Dependencies
*******************************/
runtime("org.springframework.session:spring-session-data-redis")
/*******************************
* Test Dependencies
*******************************/
testCompile(project(":genie-test"))
testCompile(project(":genie-test-web"))
testCompile("com.jayway.jsonpath:json-path")
testCompile("org.apache.tomcat:tomcat-jdbc")
testCompile("org.springframework.boot:spring-boot-starter-jetty")
testCompile("org.springframework.cloud:spring-cloud-contract-wiremock")
testCompile("org.springframework.security:spring-security-test")
}