maxkey-authentications\maxkey-authentication-social -> maxkey-starter\maxkey-starter-social

This commit is contained in:
MaxKey 2024-10-21 07:32:44 +08:00
parent 8b209be4c4
commit d2516e6933
22 changed files with 10 additions and 11 deletions

View File

@ -1,5 +1,5 @@
description = "maxkey-authentication-social"
description = "maxkey-starter-social"
dependencies {

View File

@ -56,8 +56,7 @@ public class SocialSignOnAutoConfiguration{
}
@Bean(name = "socialsAssociateService")
JdbcSocialsAssociateService socialsAssociateService(
JdbcTemplate jdbcTemplate) {
JdbcSocialsAssociateService socialsAssociateService(JdbcTemplate jdbcTemplate) {
JdbcSocialsAssociateService socialsAssociateService = new JdbcSocialsAssociateService(jdbcTemplate);
_logger.debug("JdbcSocialsAssociateService inited.");
return socialsAssociateService;

View File

@ -43,10 +43,10 @@ dependencies {
implementation project(":maxkey-starter:maxkey-starter-ip2location")
implementation project(":maxkey-starter:maxkey-starter-otp")
implementation project(":maxkey-starter:maxkey-starter-sms")
implementation project(":maxkey-starter:maxkey-starter-social")
implementation project(":maxkey-starter:maxkey-starter-web")
implementation project(":maxkey-authentications:maxkey-authentication-core")
implementation project(":maxkey-authentications:maxkey-authentication-social")
implementation project(":maxkey-authentications:maxkey-authentication-provider")
implementation project(":maxkey-protocols:maxkey-protocol-authorize")

View File

@ -57,11 +57,11 @@ dependencies {
implementation project(":maxkey-starter:maxkey-starter-ip2location")
implementation project(":maxkey-starter:maxkey-starter-otp")
implementation project(":maxkey-starter:maxkey-starter-sms")
implementation project(":maxkey-starter:maxkey-starter-social")
implementation project(":maxkey-starter:maxkey-starter-web")
implementation project(":maxkey-authentications:maxkey-authentication-core")
implementation project(":maxkey-authentications:maxkey-authentication-social")
implementation project(":maxkey-authentications:maxkey-authentication-provider")
implementation project(":maxkey-authentications:maxkey-authentication-provider")
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
implementation project(":maxkey-protocols:maxkey-protocol-cas")

View File

@ -43,11 +43,11 @@ dependencies {
implementation project(":maxkey-starter:maxkey-starter-ip2location")
implementation project(":maxkey-starter:maxkey-starter-otp")
implementation project(":maxkey-starter:maxkey-starter-sms")
implementation project(":maxkey-starter:maxkey-starter-social")
implementation project(":maxkey-starter:maxkey-starter-web")
implementation project(":maxkey-authentications:maxkey-authentication-core")
implementation project(":maxkey-authentications:maxkey-authentication-social")
implementation project(":maxkey-authentications:maxkey-authentication-provider")
implementation project(":maxkey-authentications:maxkey-authentication-provider")
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
implementation project(":maxkey-protocols:maxkey-protocol-cas")

View File

@ -12,11 +12,11 @@ dependencies {
implementation project(":maxkey-starter:maxkey-starter-ip2location")
implementation project(":maxkey-starter:maxkey-starter-otp")
implementation project(":maxkey-starter:maxkey-starter-sms")
implementation project(":maxkey-starter:maxkey-starter-social")
implementation project(":maxkey-starter:maxkey-starter-web")
implementation project(":maxkey-authentications:maxkey-authentication-core")
implementation project(":maxkey-authentications:maxkey-authentication-social")
implementation project(":maxkey-authentications:maxkey-authentication-provider")
implementation project(":maxkey-authentications:maxkey-authentication-provider")
implementation project(":maxkey-protocols:maxkey-protocol-authorize")
implementation project(":maxkey-protocols:maxkey-protocol-cas")

View File

@ -30,12 +30,12 @@ include ('maxkey-starter:maxkey-starter-captcha')
include ('maxkey-starter:maxkey-starter-ip2location')
include ('maxkey-starter:maxkey-starter-otp')
include ('maxkey-starter:maxkey-starter-sms')
include ('maxkey-starter:maxkey-starter-social')
include ('maxkey-starter:maxkey-starter-web')
//authentications
include ('maxkey-authentications:maxkey-authentication-core')
include ('maxkey-authentications:maxkey-authentication-provider')
include ('maxkey-authentications:maxkey-authentication-social')
//rest apis
include ('maxkey-web-apis:maxkey-web-api-rest')