Skip to content

Commit

Permalink
Merge pull request #418 from GSM-MSG/develop
Browse files Browse the repository at this point in the history
🔁 master 브랜치로 머지
  • Loading branch information
enbraining authored Oct 19, 2024
2 parents 324b83f + 22e5221 commit 03f53da
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
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

0 comments on commit 03f53da

Please sign in to comment.