2020-02-14 01:29:21 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-03-21 21:54:38 -04:00
|
|
|
<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">
|
2020-02-14 01:29:21 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.dddmodules.mainapp</groupId>
|
|
|
|
<artifactId>mainapp</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.dddmodules</groupId>
|
2020-06-01 05:11:12 -04:00
|
|
|
<artifactId>ddd-modules</artifactId>
|
2020-02-14 01:29:21 -05:00
|
|
|
<version>1.0</version>
|
2020-06-01 05:11:12 -04:00
|
|
|
<relativePath>../</relativePath>
|
2020-02-14 01:29:21 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baeldung.dddmodules.infrastructure</groupId>
|
|
|
|
<artifactId>infrastructure</artifactId>
|
|
|
|
<version>${appmodules.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.16</version>
|
|
|
|
<configuration>
|
|
|
|
<enableAssertions>true</enableAssertions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${compiler.plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${source.version}</source>
|
|
|
|
<target>${target.version}</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<source.version>9</source.version>
|
|
|
|
<target.version>9</target.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|