settings.gradle 942 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * in the user guide at https://docs.gradle.org
  3. */
  4. rootProject.name = 'MaxKey'
  5. //Common
  6. include 'maxkey-core'
  7. include 'maxkey-persistence'
  8. include 'maxkey-authentications'
  9. //identity
  10. include 'maxkey-identitys:maxkey-identity-scim'
  11. include 'maxkey-identitys:maxkey-identity-kafka'
  12. include 'maxkey-identitys:maxkey-identity-rest'
  13. //Protocol
  14. //include 'maxkey-protocols'
  15. include 'maxkey-protocols:maxkey-protocol-authorize'
  16. include 'maxkey-protocols:maxkey-protocol-oauth-2.0'
  17. include 'maxkey-protocols:maxkey-protocol-saml-2.0'
  18. include 'maxkey-protocols:maxkey-protocol-cas'
  19. include 'maxkey-protocols:maxkey-protocol-jwt'
  20. include 'maxkey-protocols:maxkey-protocol-formbased'
  21. include 'maxkey-protocols:maxkey-protocol-tokenbased'
  22. include 'maxkey-protocols:maxkey-protocol-extendapi'
  23. include 'maxkey-protocols:maxkey-protocol-desktop'
  24. //include 'maxkey-webs'
  25. //maxkey
  26. include 'maxkey-web-maxkey'
  27. //maxkey-mgt
  28. include 'maxkey-web-manage'