build_standard.gradle 1.1 KB

12345678910111213141516171819202122232425
  1. description = "maxkey-web-maxkey"
  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-social")
  10. compile project(":maxkey-authentications:maxkey-authentication-captcha")
  11. compile project(":maxkey-authentications:maxkey-authentication-otp")
  12. compile project(":maxkey-protocols:maxkey-protocol-authorize")
  13. compile project(":maxkey-protocols:maxkey-protocol-cas")
  14. compile project(":maxkey-protocols:maxkey-protocol-desktop")
  15. compile project(":maxkey-protocols:maxkey-protocol-extendapi")
  16. compile project(":maxkey-protocols:maxkey-protocol-formbased")
  17. compile project(":maxkey-protocols:maxkey-protocol-tokenbased")
  18. compile project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
  19. compile project(":maxkey-protocols:maxkey-protocol-saml-2.0")
  20. compile project(":maxkey-protocols:maxkey-protocol-jwt")
  21. }