build.gradle 1.3 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-authentications:maxkey-authentication-core")
  9. implementation project(":maxkey-authentications:maxkey-authentication-captcha")
  10. implementation project(":maxkey-authentications:maxkey-authentication-otp")
  11. implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
  12. implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
  13. //identity
  14. implementation project(":maxkey-identitys:maxkey-identity-scim")
  15. implementation project(":maxkey-identitys:maxkey-identity-rest")
  16. //synchronizers
  17. implementation project(":maxkey-synchronizers:maxkey-synchronizer")
  18. implementation project(":maxkey-synchronizers:maxkey-synchronizer-activedirectory")
  19. implementation project(":maxkey-synchronizers:maxkey-synchronizer-feishu")
  20. implementation project(":maxkey-synchronizers:maxkey-synchronizer-ldap")
  21. implementation project(":maxkey-synchronizers:maxkey-synchronizer-workweixin")
  22. implementation project(":maxkey-synchronizers:maxkey-synchronizer-dingtalk")
  23. implementation project(":maxkey-webs:maxkey-web-resources")
  24. }