2
0

settings.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * in the user guide at https://docs.gradle.org
  3. */
  4. rootProject.name = 'MaxKey'
  5. //Common
  6. include 'maxkey-client-sdk'
  7. include 'maxkey-core'
  8. include 'maxkey-dao'
  9. include 'maxkey-jose-jwt'
  10. //Protocol
  11. //include 'maxkey-protocols'
  12. include 'maxkey-protocols:maxkey-protocol-oauth-2.0'
  13. include 'maxkey-protocols:maxkey-protocol-saml-2.0'
  14. include 'maxkey-protocols:maxkey-protocol-authorize'
  15. include 'maxkey-protocols:maxkey-protocol-desktop'
  16. include 'maxkey-protocols:maxkey-protocol-extendapi'
  17. include 'maxkey-protocols:maxkey-protocol-formbased'
  18. include 'maxkey-protocols:maxkey-protocol-ltpa'
  19. include 'maxkey-protocols:maxkey-protocol-tokenbased'
  20. include 'maxkey-protocols:maxkey-protocol-cas'
  21. include 'maxkey-authentications'
  22. //include 'maxkey-webs'
  23. include 'maxkey-webs:maxkey-web-kerberos'
  24. include 'maxkey-webs:maxkey-web-maxkey'
  25. //IM
  26. include 'maxkey-webs:maxkey-web-manage'
  27. //Wiki
  28. include 'maxkey-webs:maxkey-web-wiki'
  29. //demo
  30. //include 'maxkey-demos'
  31. include 'maxkey-demos:maxkey-demo-cas'
  32. include 'maxkey-demos:maxkey-demo-ltpa'
  33. include 'maxkey-demos:maxkey-demo-oauth'
  34. include 'maxkey-demos:maxkey-demo-saml'
  35. include 'maxkey-demos:maxkey-demo-tokenbase'
  36. include 'maxkey-demos:maxkey-demo-jwt'