Skip to content

Commit

Permalink
feat: 테스트 프로젝트에서 라이브러리를 검증할 수 있도록 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
joon6093 committed Nov 22, 2024
1 parent 8703222 commit b84f071
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 47 deletions.
28 changes: 0 additions & 28 deletions build.gradle

This file was deleted.

1 change: 0 additions & 1 deletion handler/src/main/resources/application.properties

This file was deleted.

This file was deleted.

10 changes: 7 additions & 3 deletions test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.4.0'
id 'io.spring.dependency-management' version '1.1.6'
id 'org.springframework.boot' version '3.0.0'
id 'io.spring.dependency-management' version '1.1.0'
}

group = 'io.jeyong'
Expand All @@ -18,7 +18,11 @@ repositories {
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation project(':handler')
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'

testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
Expand Down
1 change: 0 additions & 1 deletion test/src/main/java/io/jeyong/test/TestApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ public class TestApplication {
public static void main(String[] args) {
SpringApplication.run(TestApplication.class, args);
}

}
1 change: 0 additions & 1 deletion test/src/main/resources/application.properties

This file was deleted.

Empty file.

0 comments on commit b84f071

Please sign in to comment.