Skip to content

Commit

Permalink
fix: gradle setup and git action env
Browse files Browse the repository at this point in the history
  • Loading branch information
DongGeon0908 committed Jul 24, 2024
1 parent c35d16a commit 8faca7b
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 103 deletions.
18 changes: 3 additions & 15 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,22 +56,10 @@ jobs:
cloud.aws.credentials.accessKey: ${{ secrets.AWS_ACCESS_KEY_ID }}
cloud.aws.credentials.secretKey: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# Jwt Secret Key 환경 변수 주입
auth.jwt.secret: ${{ secrets.auth.jwt.secret }}
auth.jwt.secret: ${{ secrets.AUTH_JWT_SECRET }}
# Encrypt 환경 변수 주입
encrypt.key: ${{ secrets.encrypt.key }}
encrypt.algorithm: ${{ secrets.encrypt.algorithm }}
# FCM 환경 변수 주입
push.fcm.type: ${{ secrets.push.fcm.type }}
push.fcm.project-id: ${{ secrets.push.fcm.project-id }}
push.fcm.private-key-id: ${{ secrets.push.fcm.private-key-id }}
push.fcm.private-key: ${{ secrets.push.fcm.private-key }}
push.fcm.client-email: ${{ secrets.push.fcm.client-email }}
push.fcm.client-id: ${{ secrets.push.fcm.client-id }}
push.fcm.auth-uri: ${{ secrets.push.fcm.auth-uri }}
push.fcm.token-uri: ${{ secrets.push.fcm.token-uri }}
push.fcm.auth-provider-x509-cert-url: ${{ secrets.push.fcm.auth-provider-x509-cert-url }}
push.fcm.client-x509-cert-url: ${{ secrets.push.fcm.client-x509-cert-url }}
push.fcm.universe-domain: ${{ secrets.push.fcm.universe-domain }}
encrypt.key: ${{ secrets.ENCRYPT_KEY }}
encrypt.algorithm: ${{ secrets.ENCRYPT_ALGORITHM }}

# gradlew 파일 실행권한 설정
- name: Grant execute permission for gradlew
Expand Down
4 changes: 0 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-actuator")
implementation("org.springframework.boot:spring-boot-starter-validation")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
implementation("org.springframework.boot:spring-boot-starter-rsocket")
kapt("org.springframework.boot:spring-boot-configuration-processor")

/** querydsl */
Expand Down Expand Up @@ -90,9 +89,6 @@ dependencies {
/** jwt */
implementation("com.auth0:java-jwt:${DependencyVersion.AUTH_JWT}")

/** fcm */
implementation("com.google.firebase:firebase-admin:${DependencyVersion.FCM_ADMIN}")

/** test */
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
Expand Down
3 changes: 0 additions & 3 deletions buildSrc/src/main/kotlin/DependencyVersion.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ object DependencyVersion {
/** auth0-jwt */
const val AUTH_JWT = "4.4.0"

/** fcm */
const val FCM_ADMIN = "9.3.0"

/** test */
const val TEST_CONTAINER_MYSQL = "1.19.8"
const val P6SPY_LOG = "1.9.1"
Expand Down
10 changes: 0 additions & 10 deletions src/main/kotlin/com/hero/alignlab/client/fcm/PushService.kt

This file was deleted.

This file was deleted.

This file was deleted.

37 changes: 0 additions & 37 deletions src/main/kotlin/com/hero/alignlab/client/fcm/config/FcmConfig.kt

This file was deleted.

This file was deleted.

14 changes: 0 additions & 14 deletions src/main/resources/config/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,3 @@ auth:
encrypt:
key:
algorithm:

push:
fcm:
type:
project-id:
private-key-id:
private-key:
client-email:
client-id:
auth-uri:
token-uri:
auth-provider-x509-cert-url:
client-x509-cert-url:
universe-domain:

0 comments on commit 8faca7b

Please sign in to comment.