2
0

settings.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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-simulate'
  15. include 'maxkey-protocols:maxkey-protocol-authorize'
  16. include 'maxkey-protocols:maxkey-protocol-desktop'
  17. include 'maxkey-protocols:maxkey-protocol-extendapi'
  18. include 'maxkey-protocols:maxkey-protocol-formbased'
  19. include 'maxkey-protocols:maxkey-protocol-ltpa'
  20. include 'maxkey-protocols:maxkey-protocol-tokenbased'
  21. include 'maxkey-protocols:maxkey-protocol-cas'
  22. include 'maxkey-authentications'
  23. //include 'maxkey-webs'
  24. include 'maxkey-webs:maxkey-web-kerberos'
  25. include 'maxkey-webs:maxkey-web-maxkey'
  26. //IM
  27. include 'maxkey-webs:maxkey-web-manage'
  28. //Wiki
  29. include 'maxkey-webs:maxkey-web-wiki'
  30. //demo
  31. //include 'maxkey-demos'
  32. include 'maxkey-demos:maxkey-demo-cas'
  33. include 'maxkey-demos:maxkey-demo-ltpa'
  34. include 'maxkey-demos:maxkey-demo-oauth'
  35. include 'maxkey-demos:maxkey-demo-saml'
  36. include 'maxkey-demos:maxkey-demo-tokenbase'
  37. include 'maxkey-demos:maxkey-demo-jwt'