Skip to content

Commit

Permalink
refactor: 모듈 경로 및 이름 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Curry4182 committed Nov 18, 2023
1 parent 741dd29 commit 3b211ff
Show file tree
Hide file tree
Showing 259 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions api/build.gradle → bucketback-api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-aop'
implementation project(path: ':domain')
implementation project(path: ':common')
implementation project(path: ':infrastructure')
implementation project(':bucketback-domain')
implementation project(':bucketback-common')
implementation project(':bucketback-infrastructure')

//swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion domain/build.gradle → bucketback-domain/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
runtimeOnly 'com.mysql:mysql-connector-j'

implementation project(':common')
implementation project(':bucketback-common')

// querydsl 설정 추가
implementation 'com.querydsl:querydsl-jpa:5.0.0:jakarta'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
dependencies {
// component를 대체할 의존성 붙여 두기
//crawling
implementation 'org.jsoup:jsoup:1.16.2'

Expand Down
8 changes: 4 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rootProject.name = 'bucket-back'

include 'domain'
include 'common'
include 'infrastructure'
include 'api'
include 'bucketback-domain'
include 'bucketback-common'
include 'bucketback-infrastructure'
include 'bucketback-api'

0 comments on commit 3b211ff

Please sign in to comment.