2021-09-08 22:27:59 +08:00
|
|
|
description = "maxkey-web-mgt"
|
2021-03-07 22:53:16 +08:00
|
|
|
|
|
|
|
|
//add support for Java
|
|
|
|
|
apply plugin: 'java'
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2021-04-17 09:44:10 +08:00
|
|
|
implementation project(":maxkey-common")
|
|
|
|
|
implementation project(":maxkey-core")
|
|
|
|
|
implementation project(":maxkey-persistence")
|
2021-03-07 22:53:16 +08:00
|
|
|
|
2021-04-17 09:44:10 +08:00
|
|
|
implementation project(":maxkey-authentications:maxkey-authentication-core")
|
|
|
|
|
implementation project(":maxkey-authentications:maxkey-authentication-captcha")
|
|
|
|
|
implementation project(":maxkey-authentications:maxkey-authentication-otp")
|
2022-08-05 06:50:32 +08:00
|
|
|
implementation project(":maxkey-authentications:maxkey-authentication-provider")
|
2021-03-07 22:53:16 +08:00
|
|
|
|
2021-04-17 09:44:10 +08:00
|
|
|
implementation project(":maxkey-protocols:maxkey-protocol-oauth-2.0")
|
|
|
|
|
implementation project(":maxkey-protocols:maxkey-protocol-saml-2.0")
|
2021-09-08 18:30:54 +08:00
|
|
|
|
|
|
|
|
//identity
|
2021-04-17 09:44:10 +08:00
|
|
|
implementation project(":maxkey-identitys:maxkey-identity-scim")
|
|
|
|
|
implementation project(":maxkey-identitys:maxkey-identity-rest")
|
2022-01-23 08:12:25 +08:00
|
|
|
|
|
|
|
|
//synchronizers
|
|
|
|
|
implementation project(":maxkey-synchronizers:maxkey-synchronizer")
|
|
|
|
|
implementation project(":maxkey-synchronizers:maxkey-synchronizer-activedirectory")
|
2022-01-23 14:13:49 +08:00
|
|
|
implementation project(":maxkey-synchronizers:maxkey-synchronizer-feishu")
|
2022-10-16 17:23:34 +08:00
|
|
|
implementation project(":maxkey-synchronizers:maxkey-synchronizer-jdbc")
|
2022-01-23 08:12:25 +08:00
|
|
|
implementation project(":maxkey-synchronizers:maxkey-synchronizer-ldap")
|
|
|
|
|
implementation project(":maxkey-synchronizers:maxkey-synchronizer-workweixin")
|
|
|
|
|
implementation project(":maxkey-synchronizers:maxkey-synchronizer-dingtalk")
|
2021-03-07 22:53:16 +08:00
|
|
|
}
|