settings.gradle 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * Copyright [2021] [MaxKey of copyright http://www.maxkey.top]
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /*
  17. * project name and include subprojects
  18. */
  19. rootProject.name = 'MaxKey'
  20. include (
  21. //Common
  22. 'maxkey-common',
  23. 'maxkey-core',
  24. 'maxkey-persistence',
  25. //authentications
  26. 'maxkey-authentications:maxkey-authentication-core',
  27. 'maxkey-authentications:maxkey-authentication-captcha',
  28. 'maxkey-authentications:maxkey-authentication-social',
  29. 'maxkey-authentications:maxkey-authentication-otp',
  30. //identity
  31. 'maxkey-identitys:maxkey-identity-scim',
  32. 'maxkey-identitys:maxkey-identity-rest',
  33. 'maxkey-identitys:maxkey-synchronizers',
  34. 'maxkey-identitys:maxkey-synchronizers-activedirectory',
  35. 'maxkey-identitys:maxkey-synchronizers-ldap',
  36. 'maxkey-identitys:maxkey-synchronizers-dingding',
  37. 'maxkey-identitys:maxkey-synchronizers-workweixin',
  38. //Protocol
  39. 'maxkey-protocols:maxkey-protocol-authorize',
  40. 'maxkey-protocols:maxkey-protocol-oauth-2.0',
  41. 'maxkey-protocols:maxkey-protocol-saml-2.0',
  42. 'maxkey-protocols:maxkey-protocol-cas',
  43. 'maxkey-protocols:maxkey-protocol-jwt',
  44. 'maxkey-protocols:maxkey-protocol-formbased',
  45. 'maxkey-protocols:maxkey-protocol-tokenbased',
  46. 'maxkey-protocols:maxkey-protocol-extendapi',
  47. //webs
  48. //static
  49. 'maxkey-webs:maxkey-web-resources',
  50. //maxkey
  51. 'maxkey-webs:maxkey-web-maxkey',
  52. //management(mgt)
  53. 'maxkey-webs:maxkey-web-mgt',
  54. //monitor
  55. 'maxkey-webs:maxkey-boot-monitor',
  56. //gataway
  57. 'maxkey-gataway'
  58. )