-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SAMBAD-237] 멀티 모듈 기반 프로젝트 구조 마이그레이션 (#151)
- Loading branch information
Showing
370 changed files
with
1,727 additions
and
1,640 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,4 +41,4 @@ temp | |
spy.log | ||
|
||
### Qclass ### | ||
src/main/generated/ | ||
*/src/main/generated/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
bootJar { | ||
enabled = true | ||
} | ||
|
||
jar { | ||
enabled = false | ||
} | ||
|
||
dependencies { | ||
implementation project(':moring-infra') | ||
implementation project(':moring-domain') | ||
implementation project(':moring-global-utils') | ||
} |
24 changes: 24 additions & 0 deletions
24
moring-api/src/main/java/org/depromeet/sambad/moring/api/InfraConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package org.depromeet.sambad.moring.api; | ||
|
||
import org.depromeet.sambad.moring.infra.EnableMoringConfig; | ||
import org.depromeet.sambad.moring.infra.MoringConfigGroup; | ||
import org.springframework.context.annotation.ComponentScan; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
@Configuration(proxyBeanMethods = false) | ||
@ComponentScan("org.depromeet.sambad.moring.domain") | ||
@EnableMoringConfig({ | ||
MoringConfigGroup.JPA, | ||
MoringConfigGroup.JPA_AUDITING, | ||
MoringConfigGroup.ASYNC, | ||
MoringConfigGroup.OBJECT_STORAGE, | ||
MoringConfigGroup.P6SPY, | ||
MoringConfigGroup.CONFIGURATION_PROPERTIES, | ||
MoringConfigGroup.SWAGGER, | ||
MoringConfigGroup.TIME, | ||
MoringConfigGroup.USER_ID_ARGUMENT_RESOLVER, | ||
MoringConfigGroup.SCHEDULING, | ||
MoringConfigGroup.SPRING_CACHE, | ||
}) | ||
public class InfraConfig { | ||
} |
13 changes: 13 additions & 0 deletions
13
moring-api/src/main/java/org/depromeet/sambad/moring/api/MoringApiApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.depromeet.sambad.moring.api; | ||
|
||
import org.springframework.boot.SpringApplication; | ||
import org.springframework.boot.autoconfigure.SpringBootApplication; | ||
|
||
@SpringBootApplication | ||
public class MoringApiApplication { | ||
|
||
public static void main(String[] args) { | ||
SpringApplication.run(MoringApiApplication.class, args); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
...g/event/presentation/EventController.java → ...bad/moring/api/event/EventController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ing/file/presentation/FileController.java → ...ambad/moring/api/file/FileController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 9 additions & 9 deletions
18
...presentation/MeetingAnswerController.java → ...eting/answer/MeetingAnswerController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...ent/MeetingQuestionCommentController.java → ...ent/MeetingQuestionCommentController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...eetingQuestionCommentReplyController.java → ...eetingQuestionCommentReplyController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...ng/presentation/HandWavingController.java → ...ting/handwaving/HandWavingController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 12 additions & 12 deletions
24
...eting/presentation/MeetingController.java → ...pi/meeting/meeting/MeetingController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.../member/presentation/HobbyController.java → ...g/api/meeting/member/HobbyController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.