Skip to content

Commit

Permalink
๐Ÿšจ [Fix] Github ์†Œ์…œ๋กœ๊ทธ์ธ - @valuse ๋งคํ•‘ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
๊น€ํ˜œ์ง„ authored and ๊น€ํ˜œ์ง„ committed Sep 20, 2024
1 parent 9ed4473 commit a0a1252
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,3 @@ tasks.named('test') {
compileJava {
options.compilerArgs += ['-parameters']
}

//tasks.named('compileJava') {
// options.compilerArgs += ['-parameters']
//}
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ public class GithubSocialLoginServiceImpl implements SocialLoginService {
private static final Logger logger = LoggerFactory.getLogger(GithubSocialLoginServiceImpl.class);
private final RepoRepository repoRepository;

@Value("${spring.security.oauth2.client.registration.github.client-id}")
@Value("${OAUTH_GITHUB_CLIENT_ID}")
private String githubClientId;
@Value("${spring.security.oauth2.client.registration.github.redirect-uri}")
@Value("${OAUTH_GITHUB_REDIRECT_URI}")
private String githubRedirectUrl;
@Value("${spring.security.oauth2.client.provider.github.token-uri}")
@Value("${OAUTH_GITHUB_TOKEN_URI}")
private String githubReqUrl;
@Value("${spring.security.oauth2.client.registration.github.client-secret}")
@Value("${OAUTH_GITHUB_CLIENT_SECRET}")
private String githubClientSecret;

@Override
Expand Down

0 comments on commit a0a1252

Please sign in to comment.