build.gradle 687 B

12345678910111213141516171819
  1. description = "maxkey-web-manage"
  2. //add support for Java
  3. apply plugin: 'java'
  4. dependencies {
  5. compile project(":maxkey-common")
  6. compile project(":maxkey-core")
  7. compile project(":maxkey-persistence")
  8. compile project(":maxkey-authentications:maxkey-authentication-core")
  9. compile project(":maxkey-authentications:maxkey-authentication-captcha")
  10. compile project(":maxkey-authentications:maxkey-authentication-otp")
  11. compile project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
  12. compile project(":maxkey-protocols:maxkey-protocol-saml-2.0")
  13. compile project(":maxkey-identitys:maxkey-identity-scim")
  14. compile project(":maxkey-identitys:maxkey-identity-rest")
  15. }