settings.gradle 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. 'maxkey-authentications:maxkey-authentication-provider',
  31. 'maxkey-authentications:maxkey-authentication-sms',
  32. //rest apis
  33. 'maxkey-web-apis:maxkey-web-api-scim',
  34. 'maxkey-web-apis:maxkey-web-api-rest',
  35. //synchronizers
  36. 'maxkey-synchronizers:maxkey-synchronizer',
  37. 'maxkey-synchronizers:maxkey-synchronizer-reorgdept',
  38. 'maxkey-synchronizers:maxkey-synchronizer-activedirectory',
  39. 'maxkey-synchronizers:maxkey-synchronizer-feishu',
  40. 'maxkey-synchronizers:maxkey-synchronizer-jdbc',
  41. 'maxkey-synchronizers:maxkey-synchronizer-ldap',
  42. 'maxkey-synchronizers:maxkey-synchronizer-dingtalk',
  43. 'maxkey-synchronizers:maxkey-synchronizer-workweixin',
  44. //Protocol
  45. 'maxkey-protocols:maxkey-protocol-authorize',
  46. 'maxkey-protocols:maxkey-protocol-oauth-2.0',
  47. 'maxkey-protocols:maxkey-protocol-saml-2.0',
  48. 'maxkey-protocols:maxkey-protocol-cas',
  49. 'maxkey-protocols:maxkey-protocol-jwt',
  50. 'maxkey-protocols:maxkey-protocol-formbased',
  51. 'maxkey-protocols:maxkey-protocol-tokenbased',
  52. 'maxkey-protocols:maxkey-protocol-extendapi',
  53. //webs
  54. //maxkey
  55. 'maxkey-webs:maxkey-web-maxkey',
  56. //management(mgt)
  57. 'maxkey-webs:maxkey-web-mgt',
  58. //gataway
  59. 'maxkey-webs:maxkey-gataway'
  60. )