Skip to content

Commit

Permalink
fixt: build test error
Browse files Browse the repository at this point in the history
  • Loading branch information
ManHyuk committed Jan 18, 2024
1 parent c10ce69 commit 384c981
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import org.springframework.context.annotation.Configuration
@Configuration
@EnableEncryptableProperties
class JasyptConfig(
@Value("\${JASYPT_ENCRYPTION_PASSWORD}") val password: String,
@Value("\${JASYPT_ENCRYPTION_PASSWORD: ''}") val password: String,
) {

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import org.springframework.context.annotation.Configuration
@Configuration
@EnableEncryptableProperties
class JasyptConfig(
@Value("\${JASYPT_ENCRYPTION_PASSWORD}") val password: String,
@Value("\${JASYPT_ENCRYPTION_PASSWORD: ''}") val password: String,
) {

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@ spring:
registration:
naver:
redirect-uri: http://localhost:8080/dev/api/login/oauth2/code/naver
client-id: ENC(qFYukOWHaCGpavvnBwIIe5MfIbMaETjo8ABJPEvKL1o=)
client-secret: ENC(sJK/TYU3PJj1+d6mB1OXjZTrmUFdALuC)
client-id: a
client-secret: a
authorization-grant-type: authorization_code
scope:
- email
- name
client-name: naver
kakao:
redirect-uri: http://localhost:8080/dev/api/login/oauth2/code/kakao
client-id: ENC(LzuIWpuN7JG7pwbU87S4DvColRj57LtcnRb0qfDdyGpnNUpI2+FHgCyJs0p2Wn7/)
client-id: a
authorization-grant-type: authorization_code
scope:
- profile_nickname
- profile_image
client-name: kakao
google:
redirect-uri: http://localhost:8080/dev/api/login/oauth2/code/google
client-id: ENC(v6CCXncJwOS8W6YizTBkDskIbDrBV/DM+1WpJvERtF6YUahSyevhaoxPQxkdy3DXK++9NZMP7OeqRi7qhgRizQNjXD+u2hNIxIcWu6B71fATnGojMqiDEg==)
client-secret: ENC(Sv6L3GpxMxJA7s93BGorm6DclzLwJYSg8rezWXhkAi0PY85zzA/d7ulKspstKMY/)
client-id: a
client-secret: a
scope:
- email
- profile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.jasypt.encryption.pbe.StandardPBEStringEncryptor
import org.junit.jupiter.api.Test

class JasyptTest {
@Test
// @Test
fun jasypt() {
val input = ""
val encrypted = jasyptEncrypt(input)
Expand Down

0 comments on commit 384c981

Please sign in to comment.