build_standard.gradle 1.2 KB

12345678910111213141516171819202122232425262728
  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. implementation project(":maxkey-identitys:maxkey-synchronizers")
  17. implementation project(":maxkey-identitys:maxkey-synchronizers-activedirectory")
  18. implementation project(":maxkey-identitys:maxkey-synchronizers-ldap")
  19. implementation project(":maxkey-identitys:maxkey-synchronizers-workweixin")
  20. implementation project(":maxkey-identitys:maxkey-synchronizers-dingding")
  21. implementation project(":maxkey-webs:maxkey-web-resources")
  22. }