#348 - Data Tranfer Object : Added module to project.

This commit is contained in:
Gopinath Langote 2017-08-09 15:27:36 +05:30
parent 54d8ec94be
commit db10b937f2
2 changed files with 20 additions and 0 deletions

View File

@ -27,6 +27,10 @@
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<modules>
<module>../data-transfer-object</module>
</modules>
<properties>
<lombok.version>1.16.14</lombok.version>
</properties>

View File

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>data-bus</artifactId>
<groupId>com.iluwatar</groupId>
<version>1.17.0-SNAPSHOT</version>
<relativePath>../data-bus/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>data-transfer-object</artifactId>
</project>