Files
MaxKey/maxkey-protocols/maxkey-protocol-cas/build.gradle

21 lines
642 B
Groovy
Raw Normal View History

2019-04-29 23:53:10 +08:00
description = "maxkey-protocol-cas"
dependencies {
//local jars
2019-05-25 23:39:07 +08:00
compile fileTree(dir: '../maxkey-lib/*/', include: '*.jar')
2019-04-29 23:53:10 +08:00
2020-09-09 22:52:03 +08:00
// https://mvnrepository.com/artifact/org.jasig.cas.client/cas-client-core
testCompile group: 'org.jasig.cas.client', name: 'cas-client-core', version: '3.6.1'
2020-09-09 07:08:19 +08:00
2020-09-09 22:52:03 +08:00
testCompile group: 'org.pac4j', name: 'pac4j-core', version: '3.8.3'
2020-09-09 07:08:19 +08:00
// https://mvnrepository.com/artifact/org.pac4j/pac4j-cas
2020-09-09 22:52:03 +08:00
testCompile group: 'org.pac4j', name: 'pac4j-cas', version: '3.8.3'
2020-09-09 07:08:19 +08:00
2019-04-29 23:53:10 +08:00
compile project(":maxkey-core")
compile project(":maxkey-persistence")
2019-04-29 23:53:10 +08:00
compile project(":maxkey-protocols:maxkey-protocol-authorize")
}