Skip to content

Commit

Permalink
Merge pull request #359 from kkkapuq/main
Browse files Browse the repository at this point in the history
stage merge into main
  • Loading branch information
kkkapuq authored Mar 8, 2024
2 parents 4ff2792 + 23f7a3c commit 8cf5f4c
Show file tree
Hide file tree
Showing 449 changed files with 17,308 additions and 9,713 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/bepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ env:
BUCKET_NAME: orury-bepo-bucket
CODE_DEPLOY_APP_NAME: orury-code-deploy
DEPLOYMENT_GROUP_NAME: orury-code-deploy-group
DOCKER_ENV: .env

on:
push:
Expand All @@ -30,16 +29,8 @@ jobs:
run: |
touch ./orury-client/src/main/resources/application-secret.properties
touch ./orury-batch/src/main/resources/application-secret.properties
echo "${{ secrets.APPLICATION_SECRET }}" > ./orury-client/src/main/resources/application-secret.properties
echo "${{ secrets.APPLICATION_SECRET }}" > ./orury-batch/src/main/resources/application-secret.properties
cat ./orury-client/src/main/resources/application-secret.properties
cat ./orury-batch/src/main/resources/application-secret.properties
- name: Make env file
run: |
touch ./.env
echo "${{ secrets.DOCKER_ENV }}" >> ./.env
cat ./.env
echo "${{ secrets.JASYPT_PASSWORD }}" > ./orury-client/src/main/resources/application-secret.properties
echo "${{ secrets.JASYPT_PASSWORD }}" > ./orury-batch/src/main/resources/application-secret.properties
- name: Run chmod to make gradlew executable
run: chmod +x ./gradlew
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# Code Style
.idea/**/codeStyles
.idea/**/codeStyleConfig.xml
.idea/**/Project.xml

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
Expand Down
21 changes: 14 additions & 7 deletions orury-admin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
//build.gradle 파일
dependencies {
implementation project(':orury-common')
implementation project(':orury-domain')
implementation project(':orury-common')

//devtools
developmentOnly 'org.springframework.boot:spring-boot-devtools'

implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'

//Security
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
testImplementation 'org.springframework.security:spring-security-test'

//security jwt
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5'

//jakarta.xml.bind
implementation 'jakarta.xml.bind:jakarta.xml.bind-api-parent:4.0.0'
compileOnly group: 'jakarta.servlet', name: 'jakarta.servlet-api', version: '6.0.0'
Expand All @@ -23,6 +24,12 @@ dependencies {
compileOnly 'org.springdoc:springdoc-openapi-starter-webflux-ui:2.2.0'
compileOnly 'org.springdoc:springdoc-openapi-starter-webflux-api:2.2.0'

//mysql
runtimeOnly 'com.mysql:mysql-connector-j'

//json
implementation 'org.json:json:20231013'

testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.springframework.restdocs:spring-restdocs-mockmvc'
}
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 8cf5f4c

Please sign in to comment.