Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

모듈명 수정 #19

Merged
merged 5 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
run: chmod +x gradlew

- name: 🧪 Spring Boot Test
run: ./gradlew clean application:wypl-calendar:test
run: ./gradlew clean application:wypl-core:test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.wypl.applicationcore;
package com.wypl.applicationcommon;

import org.springframework.http.HttpStatus;
import org.springframework.http.HttpStatusCode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ java {
}

dependencies {
implementation project(':application:application-core')
implementation project(':application:application-common')
}
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package com.wypl.wyplcalendar;
package com.wypl.wyplcore;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class WyplCalendarApplication {
public class WyplColorApplication {

public static void main(String[] args) {
SpringApplication.run(WyplCalendarApplication.class, args);
SpringApplication.run(WyplColorApplication.class, args);
}

}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.wypl.wyplcalendar;
package com.wypl.wyplcore;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
Expand Down
2 changes: 1 addition & 1 deletion application/wypl-image/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bootJar {

dependencies {
implementation project(':common')
implementation project(':application:application-core')
implementation project(':application:application-common')
implementation project(':client:aws-s3-client')

testImplementation('org.springframework.boot:spring-boot-starter-test')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;

import com.wypl.applicationcore.WyplResponseEntity;
import com.wypl.applicationcommon.WyplResponseEntity;
import com.wypl.wyplimage.data.DeleteImageRequest;
import com.wypl.wyplimage.data.UploadImageResponse;
import com.wypl.wyplimage.service.ImageService;
Expand Down
2 changes: 1 addition & 1 deletion application/wypl-notification/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ java {
}

dependencies {
implementation project(':application:application-core')
implementation project(':application:application-common')
}
2 changes: 1 addition & 1 deletion domain/jpa-calendar-domain/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ java {
}

dependencies {
implementation project(':domain:jpa-core')
implementation project(':domain:jpa-common')
implementation project(':domain:jpa-member-domain')
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.wypl.jpacore;
package com.wypl.jpacommon;

import org.springframework.context.annotation.Configuration;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.wypl.jpacore;
package com.wypl.jpacommon;

import java.time.LocalDateTime;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.wypl.jpacore;
package com.wypl.jpacommon;

import com.wypl.common.exception.ServerErrorCode;

Expand Down
2 changes: 1 addition & 1 deletion domain/jpa-member-domain/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ java {
}

dependencies {
implementation project(':domain:jpa-core')
implementation project(':domain:jpa-common')
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.wypl.mongocore;
package com.wypl.mongocommon;

import org.springframework.context.annotation.Configuration;
import org.springframework.data.mongodb.config.EnableMongoAuditing;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.wypl.mongocore;
package com.wypl.mongocommon;

import java.time.LocalDateTime;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.wypl.mongocore;
package com.wypl.mongocommon;

import com.wypl.common.exception.ServerErrorCode;

Expand Down
8 changes: 4 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ rootProject.name = "backend"

/* Application Module */
include ':application'
include ':application:application-core'
include ':application:wypl-calendar'
include ':application:application-common'
include ':application:wypl-core'
include ':application:wypl-notification'
include ':application:wypl-image'

/* Domain Module */
include ':domain'
include ':domain:jpa-core'
include ':domain:jpa-common'
include ':domain:jpa-calendar-domain'
include ':domain:jpa-member-domain'
include ':domain:mongo-core'
include ':domain:mongo-common'

/* Client Module */
include ':client'
Expand Down
Loading