Skip to content

Commit 22e5221

Browse files
authored
Merge pull request #417 from GSM-MSG/416-update-gauth-sdk-version
πŸ” GAuth SDK 버전 μˆ˜μ •
2 parents 871482b + c12143a commit 22e5221

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

β€ŽbuildSrc/src/main/kotlin/DependencyVersions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ object DependencyVersions {
66
const val MOCKITO_VERSION = "4.0.0"
77
const val AWS_VERSION = "2.2.6.RELEASE"
88
const val SERVLET_VERSION = "4.0.1"
9-
const val GAUTH_VERSION = "3.0.0"
9+
const val GAUTH_VERSION = "3.0.1"
1010
const val SPRING_TRANSACTION = "5.3.22"
1111
const val QUERYDSL = "5.0.0"
1212
const val MARIA_VERSION = "2.1.2"

β€Žsms-core/src/main/kotlin/team/msg/sms/common/spi/GAuthPort.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package team.msg.sms.common.spi
22

3-
import gauth.GAuthToken
4-
import gauth.GAuthUserInfo
3+
import gauth.response.GAuthToken
4+
import gauth.response.GAuthUserInfo
55

66
interface GAuthPort {
77
fun receiveGAuthToken(code: String): GAuthToken

β€Žsms-core/src/main/kotlin/team/msg/sms/domain/auth/usecase/SignInUseCase.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package team.msg.sms.domain.auth.usecase
22

3-
import gauth.GAuthUserInfo
3+
import gauth.response.GAuthUserInfo
44
import gauth.exception.GAuthException
55
import team.msg.sms.domain.auth.dto.req.SignInRequestData
66
import team.msg.sms.common.annotation.UseCase

β€Žsms-core/src/test/kotlin/team/msg/sms/domain/auth/core/usecase/GAuthSignInUseCaseTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package team.msg.sms.domain.auth.core.usecase
22

3-
import gauth.GAuthToken
4-
import gauth.GAuthUserInfo
3+
import gauth.response.GAuthToken
4+
import gauth.response.GAuthUserInfo
55
import org.assertj.core.api.Assertions.assertThat
66
import org.junit.jupiter.api.BeforeEach
77
import org.junit.jupiter.api.Test

β€Žsms-infrastructure/src/main/kotlin/team/msg/sms/thirdparty/gauth/GAuthAdapter.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package team.msg.sms.thirdparty.gauth
22

33
import gauth.GAuth
4-
import gauth.GAuthToken
5-
import gauth.GAuthUserInfo
4+
import gauth.response.GAuthToken
5+
import gauth.response.GAuthUserInfo
66
import org.springframework.stereotype.Component
77
import team.msg.sms.common.spi.GAuthPort
88

0 commit comments

Comments
Β (0)