build.gradle 725 B

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