build_tradition.gradle 1.3 KB

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