Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

๐Ÿ” master ๋ธŒ๋žœ์น˜๋กœ ๋จธ์ง€ #418

Merged
merged 3 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/DependencyVersions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object DependencyVersions {
const val MOCKITO_VERSION = "4.0.0"
const val AWS_VERSION = "2.2.6.RELEASE"
const val SERVLET_VERSION = "4.0.1"
const val GAUTH_VERSION = "3.0.0"
const val GAUTH_VERSION = "3.0.1"
const val SPRING_TRANSACTION = "5.3.22"
const val QUERYDSL = "5.0.0"
const val MARIA_VERSION = "2.1.2"
Expand Down
4 changes: 2 additions & 2 deletions sms-core/src/main/kotlin/team/msg/sms/common/spi/GAuthPort.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package team.msg.sms.common.spi

import gauth.GAuthToken
import gauth.GAuthUserInfo
import gauth.response.GAuthToken
import gauth.response.GAuthUserInfo

interface GAuthPort {
fun receiveGAuthToken(code: String): GAuthToken
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package team.msg.sms.domain.auth.usecase

import gauth.GAuthUserInfo
import gauth.response.GAuthUserInfo
import gauth.exception.GAuthException
import team.msg.sms.domain.auth.dto.req.SignInRequestData
import team.msg.sms.common.annotation.UseCase
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package team.msg.sms.domain.auth.core.usecase

import gauth.GAuthToken
import gauth.GAuthUserInfo
import gauth.response.GAuthToken
import gauth.response.GAuthUserInfo
import org.assertj.core.api.Assertions.assertThat
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package team.msg.sms.thirdparty.gauth

import gauth.GAuth
import gauth.GAuthToken
import gauth.GAuthUserInfo
import gauth.response.GAuthToken
import gauth.response.GAuthUserInfo
import org.springframework.stereotype.Component
import team.msg.sms.common.spi.GAuthPort

Expand Down
Loading