-
-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathbuild.gradle
25 lines (22 loc) · 1.13 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
description = "Apereo CAS Configuration - Kubernetes"
ext {
publishMetadata = true
projectMetadata = [
category: "Configuration Management",
title: "Configuration Management via Kubernetes"
]
}
dependencies {
implementation libraries.springcloudkubernetesconfig
implementation libraries.springcloudbootstrap
implementation project(":core:cas-server-core-configuration-api")
testImplementation project(":core:cas-server-core-services-authentication")
testImplementation project(":core:cas-server-core-authentication-attributes")
testImplementation project(":core:cas-server-core-authentication")
testImplementation project(":core:cas-server-core-authentication-api")
testImplementation project(":core:cas-server-core-web-api")
testImplementation project(":core:cas-server-core-util-api")
testImplementation project(path: ":core:cas-server-core-authentication", configuration: "tests")
testImplementation project(path: ":core:cas-server-core-services", configuration: "tests")
testImplementation project(path: ":core:cas-server-core-util-api", configuration: "tests")
}