Skip to content

Commit

Permalink
Merge pull request #112 from ItRecode/develop
Browse files Browse the repository at this point in the history
1차 배포 version 0.0.1
  • Loading branch information
Pull-Stack authored Jan 16, 2023
2 parents a31a85d + 5ff496e commit 930f0f6
Show file tree
Hide file tree
Showing 131 changed files with 5,637 additions and 30 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @Jaeyeop-Jung @Pull-Stack @kdomo
3 changes: 3 additions & 0 deletions pull_request_template.md → .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
## 관련 이슈 번호

<!-- - [이슈번호 / 이슈내용](https://recodeit.atlassian.net/browse/이슈번호) -->

## 설명

## 변경사항

<!-- PR에 반영되어야 할 변경 사항들을 가능한 자세히 작성 해주세요. -->
<!-- - [x] 회원가입 및 로그인 -->

Expand Down
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ out/
/.nb-gradle/

### VS Code ###
.vscode/
.vscode/

### Custom ###
logs/
*.pem
31 changes: 30 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@ plugins {
id 'io.spring.dependency-management' version '1.0.15.RELEASE'
}

group = 'com.recodeit'
group = 'com.recordit'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'

configurations {
compileOnly {
extendsFrom annotationProcessor
}
all {
// log4j2를 위해 logback 의존성 제거
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-logging'
}
}

repositories {
Expand All @@ -24,14 +28,39 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.session:spring-session-data-redis'
implementation 'io.springfox:springfox-boot-starter:3.0.0'
implementation 'io.springfox:springfox-swagger-ui:3.0.0'

// embedded redis
implementation('it.ozimov:embedded-redis:0.7.3') {
exclude group: "org.slf4j", module: "slf4j-simple"
}

compileOnly 'org.projectlombok:lombok'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'

// use static mock
testImplementation 'org.mockito:mockito-inline:4.5.1'

// use ConfigurationProperties
annotationProcessor "org.springframework.boot:spring-boot-configuration-processor"

// use s3
implementation 'com.amazonaws:aws-java-sdk-s3:1.12.372'

// log4j2
implementation 'org.springframework.boot:spring-boot-starter-log4j2'

}

tasks.named('test') {
useJUnitPlatform()
}

jar {
enabled = false
}
4 changes: 4 additions & 0 deletions dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM adoptopenjdk/openjdk11
ARG JAR_FILE=target/*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","/app.jar"]
Loading

0 comments on commit 930f0f6

Please sign in to comment.