build_tradition.gradle 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. description = "maxkey-web-mgt"
  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. //synchronizers
  18. implementation project(":maxkey-synchronizers:maxkey-synchronizer")
  19. implementation project(":maxkey-synchronizers:maxkey-synchronizer-activedirectory")
  20. implementation project(":maxkey-synchronizers:maxkey-synchronizer-feishu")
  21. implementation project(":maxkey-synchronizers:maxkey-synchronizer-jdbc")
  22. implementation project(":maxkey-synchronizers:maxkey-synchronizer-ldap")
  23. implementation project(":maxkey-synchronizers:maxkey-synchronizer-workweixin")
  24. implementation project(":maxkey-synchronizers:maxkey-synchronizer-dingtalk")
  25. }