Adds layers and dependencies between them.

This commit is contained in:
rogelio-o
2018-06-16 17:13:58 +02:00
parent ec62e8e544
commit 59bf23f22a
7 changed files with 176 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.rogelioorts.training</groupId>
<artifactId>spring-ddd</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>spring-ddd-application</artifactId>
<dependencies>
<dependency>
<groupId>com.rogelioorts.training</groupId>
<artifactId>spring-ddd-domain</artifactId>
</dependency>
</dependencies>
</project>