File tree Expand file tree Collapse file tree
core/service/user-service Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,12 +11,6 @@ dependencies {
1111 implementation(" org.springframework.boot:spring-boot-starter-actuator" )
1212 implementation(" org.springdoc:springdoc-openapi-starter-webmvc-ui:${project.properties[" springDocOpenApiVersion" ]} " )
1313
14- // querydsl
15- annotationProcessor(" com.querydsl:querydsl-apt::jakarta" )
16- annotationProcessor(" jakarta.persistence:jakarta.persistence-api" )
17- annotationProcessor(" jakarta.annotation:jakarta.annotation-api" )
18-
1914 // test-fixtures
2015 testImplementation(testFixtures(project(" :core:infra:database:mysql:mysql-core" )))
21- testImplementation(testFixtures(project(" :modules:redis" )))
2216}
Original file line number Diff line number Diff line change @@ -48,8 +48,6 @@ subprojects {
4848 dependencies {
4949 // Web
5050 runtimeOnly(" org.springframework.boot:spring-boot-starter-validation" )
51- // Spring
52- implementation(" org.springframework.boot:spring-boot-starter" )
5351 // Serialize
5452 implementation(" com.fasterxml.jackson.datatype:jackson-datatype-jsr310" )
5553 // Lombok
Original file line number Diff line number Diff line change 1+ dependencies {
2+
3+
4+ }
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ plugins {
55
66dependencies {
77 api(" org.springframework.kafka:spring-kafka" )
8+ implementation(" org.springframework.boot:spring-boot-starter" )
9+
810
911 testImplementation(" org.springframework.kafka:spring-kafka-test" )
1012 testImplementation(" org.testcontainers:kafka" )
Original file line number Diff line number Diff line change @@ -33,3 +33,7 @@ pluginManagement {
3333 }
3434 }
3535}
36+
37+ include(" core:service" )
38+
39+ include(" core:service:user-service" )
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ plugins {
55dependencies {
66 // spring
77 implementation(" org.springframework:spring-web" )
8+ implementation(" org.springframework.boot:spring-boot-starter" )
9+
810 // jackson
911 implementation(" com.fasterxml.jackson.module:jackson-module-kotlin" )
1012 implementation(" com.fasterxml.jackson.datatype:jackson-datatype-jsr310" )
You can’t perform that action at this time.
0 commit comments