Skip to content

Commit db10b93

Browse files
author
Gopinath Langote
committed
iluwatar#348 - Data Tranfer Object : Added module to project.
1 parent 54d8ec9 commit db10b93

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

data-bus/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
xmlns="http://maven.apache.org/POM/4.0.0"
2828
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2929
<modelVersion>4.0.0</modelVersion>
30+
<packaging>pom</packaging>
31+
<modules>
32+
<module>../data-transfer-object</module>
33+
</modules>
3034
<properties>
3135
<lombok.version>1.16.14</lombok.version>
3236
</properties>

data-transfer-object/pom.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>data-bus</artifactId>
7+
<groupId>com.iluwatar</groupId>
8+
<version>1.17.0-SNAPSHOT</version>
9+
<relativePath>../data-bus/pom.xml</relativePath>
10+
</parent>
11+
<modelVersion>4.0.0</modelVersion>
12+
13+
<artifactId>data-transfer-object</artifactId>
14+
15+
16+
</project>

0 commit comments

Comments
 (0)