build.gradle 897 B

1234567891011121314151617181920212223
  1. description = "maxkey-protocol-cas"
  2. dependencies {
  3. //local jars
  4. implementation fileTree(dir: '../maxkey-lib/*/', include: '*.jar')
  5. // https://mvnrepository.com/artifact/org.jasig.cas.client/cas-client-core
  6. testImplementation group: 'org.jasig.cas.client', name: 'cas-client-core', version: '3.6.1'
  7. testImplementation group: 'org.pac4j', name: 'pac4j-core', version: '3.8.3'
  8. // https://mvnrepository.com/artifact/org.pac4j/pac4j-cas
  9. testImplementation group: 'org.pac4j', name: 'pac4j-cas', version: '3.8.3'
  10. implementation project(":maxkey-common")
  11. implementation project(":maxkey-core")
  12. implementation project(":maxkey-persistence")
  13. implementation project(":maxkey-protocols:maxkey-protocol-authorize")
  14. implementation project(":maxkey-authentications:maxkey-authentication-core")
  15. implementation project(":maxkey-authentications:maxkey-authentication-provider")
  16. }