프로젝트 구조 변경

This commit is contained in:
deogicorgi
2022-04-02 09:13:48 +09:00
parent 7c179f693b
commit 781fb62fb7
29 changed files with 189 additions and 58 deletions

19
common/build.gradle Normal file
View File

@@ -0,0 +1,19 @@
plugins {
id 'java'
}
group 'com.github.deogicorgi.reactive'
version '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
}