Skip to content

Commit

Permalink
Config: codestyle 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
1223v committed Nov 1, 2023
1 parent f24880d commit 99eb473
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ dependencies {

checkstyle {
maxWarnings = 0 // 규칙이 어긋나는 코드가 하나라도 있을 경우 빌드 fail을 내고 싶다면 이 선언을 추가한다.
configFile = file("${rootDir}/naver-checkstyle-rules.xml")
configProperties = ["suppressionFile": "${rootDir}/naver-checkstyle-suppressions.xml"]
configFile = file(".idea/codeStyles/naver-checkstyle-rules.xml")
configProperties = ["suppressionFile": ".idea/codeStyles/naver-checkstyle-suppressions.xml"]
toolVersion = "8.24" // checkstyle 버전 8.24 이상 선언
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
package com.readyvery.readyverydemo.src.payment;

public class PayService {

}
3 changes: 0 additions & 3 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
spring.datasource.url=jdbc:mysql://localhost:3306/readyvery
spring.datasource.username=root
spring.datasource.password=12345678
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.hibernate.ddl-auto=create
spring.jpa.properties.hibernate.format_sql=true
spring.jackson.serialization.fail-on-empty-beans=false

Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
package com.readyvery.readyverydemo;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class ReadyverydemoApplicationTests {

@Test
void contextLoads() {
}
// @Test
// void contextLoads() {
// }

}

0 comments on commit 99eb473

Please sign in to comment.