Skip to content

Commit

Permalink
add shipment-service module
Browse files Browse the repository at this point in the history
  • Loading branch information
xstefank committed Oct 26, 2017
1 parent 9c35e94 commit 5ae10ec
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 1 deletion.
13 changes: 13 additions & 0 deletions eventuate-service.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="eventuate-service" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="org.learn.eventuate" external.system.module.version="1.0-SNAPSHOT" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
<excludeFolder url="file://$MODULE_DIR$/build" />
<excludeFolder url="file://$MODULE_DIR$/out" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
2 changes: 1 addition & 1 deletion service-model/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name = 'service-domain'
rootProject.name = 'service-model'

2 changes: 2 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ include 'order-service'
include 'shipment-service'

rootProject.name = 'eventuate-service'
include 'ship-service'
include 'shipment-service'

14 changes: 14 additions & 0 deletions ship-service/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
group 'org.learn.eventuate'
version '1.0-SNAPSHOT'

apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}

0 comments on commit 5ae10ec

Please sign in to comment.