build_tradition.gradle 1.0 KB

123456789101112131415161718192021222324252627
  1. description = "maxkey-web-openapi"
  2. //add support for Java
  3. apply plugin: 'java'
  4. dependencies {
  5. implementation project(":maxkey-common")
  6. implementation project(":maxkey-core")
  7. implementation project(":maxkey-persistence")
  8. implementation project(":maxkey-starter:maxkey-starter-captcha")
  9. implementation project(":maxkey-starter:maxkey-starter-ip2location")
  10. implementation project(":maxkey-starter:maxkey-starter-otp")
  11. implementation project(":maxkey-starter:maxkey-starter-sms")
  12. implementation project(":maxkey-starter:maxkey-starter-web")
  13. implementation project(":maxkey-authentications:maxkey-authentication-core")
  14. implementation project(":maxkey-authentications:maxkey-authentication-provider")
  15. implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
  16. implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
  17. //webapis
  18. implementation project(":maxkey-web-apis:maxkey-web-api-scim")
  19. implementation project(":maxkey-web-apis:maxkey-web-api-rest")
  20. }