2
0

settings.gradle 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. //synchronizers
  34. 'maxkey-synchronizers:maxkey-synchronizer',
  35. 'maxkey-synchronizers:maxkey-synchronizer-reorgdept',
  36. 'maxkey-synchronizers:maxkey-synchronizer-activedirectory',
  37. 'maxkey-synchronizers:maxkey-synchronizer-feishu',
  38. 'maxkey-synchronizers:maxkey-synchronizer-ldap',
  39. 'maxkey-synchronizers:maxkey-synchronizer-dingtalk',
  40. 'maxkey-synchronizers:maxkey-synchronizer-workweixin',
  41. //Protocol
  42. 'maxkey-protocols:maxkey-protocol-authorize',
  43. 'maxkey-protocols:maxkey-protocol-oauth-2.0',
  44. 'maxkey-protocols:maxkey-protocol-saml-2.0',
  45. 'maxkey-protocols:maxkey-protocol-cas',
  46. 'maxkey-protocols:maxkey-protocol-jwt',
  47. 'maxkey-protocols:maxkey-protocol-formbased',
  48. 'maxkey-protocols:maxkey-protocol-tokenbased',
  49. 'maxkey-protocols:maxkey-protocol-extendapi',
  50. //webs
  51. //static
  52. 'maxkey-webs:maxkey-web-resources',
  53. //maxkey
  54. 'maxkey-webs:maxkey-web-maxkey',
  55. //management(mgt)
  56. 'maxkey-webs:maxkey-web-mgt',
  57. //monitor
  58. 'maxkey-webs:maxkey-boot-monitor',
  59. //gataway
  60. 'maxkey-webs:maxkey-gataway'
  61. )