2020-02-14 01:29:21 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-03-13 05:18:44 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-03-21 21:54:38 -04:00
|
|
|
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>
|
2022-05-24 04:22:37 -04:00
|
|
|
<groupId>com.baeldung.dddcontexts.sharedkernel</groupId>
|
2022-12-08 08:28:09 -05:00
|
|
|
<artifactId>ddd-contexts-sharedkernel</artifactId>
|
2020-02-14 01:29:21 -05:00
|
|
|
<version>1.0</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
2022-05-24 04:22:37 -04:00
|
|
|
<groupId>com.baeldung.dddcontexts</groupId>
|
|
|
|
<artifactId>ddd-contexts</artifactId>
|
2020-02-14 01:29:21 -05:00
|
|
|
<version>1.0</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<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>
|