settings.gradle 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. //maxkey
  52. 'maxkey-webs:maxkey-web-maxkey',
  53. //management(mgt)
  54. 'maxkey-webs:maxkey-web-mgt',
  55. //monitor
  56. 'maxkey-webs:maxkey-monitor',
  57. //gataway
  58. 'maxkey-webs:maxkey-gataway'
  59. )