Skip to content
This repository has been archived by the owner on Aug 13, 2022. It is now read-only.

Commit

Permalink
Merge pull request #8 from f-lab-edu/feature/#2/login
Browse files Browse the repository at this point in the history
Feature/#2/login
  • Loading branch information
jsy3831 committed Oct 16, 2021
2 parents f579dda + f935896 commit 4ebb8f7
Show file tree
Hide file tree
Showing 30 changed files with 1,055 additions and 477 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@ plugins {
id 'org.springframework.boot' version '2.5.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'checkstyle'
}

group = 'com'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'

compileJava.options.encoding = 'UTF-8' // UTF-8 설정
compileTestJava.options.encoding = 'UTF-8'

configurations {
compileOnly {
extendsFrom annotationProcessor
Expand Down Expand Up @@ -39,3 +43,9 @@ dependencies {
test {
useJUnitPlatform()
}

checkstyle {
maxWarnings = 0 // 규칙이 어긋나는 코드가 하나라도 있을 경우 빌드 fail을 내고 싶다면 이 선언을 추가한다.
configFile = file("${rootDir}/naver-checkstyle-rules.xml")
toolVersion ="9.0"
}
Loading

0 comments on commit 4ebb8f7

Please sign in to comment.