Files
hexagonal-example/config/pom.xml
2021-04-19 22:29:17 +02:00

70 lines
2.3 KiB
XML

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.strasser.peter.hexagonal</groupId>
<artifactId>hexagonaldemo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>config</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>config</name>
<description>Cross cutting concerns for the application</description>
<properties>
<java.version>16</java.version>
<maven.compiler.target>16</maven.compiler.target>
<maven.compiler.source>16</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.strasser.peter.hexagonal</groupId>
<artifactId>application</artifactId>
</dependency>
<dependency>
<groupId>de.strasser.peter.hexagonal</groupId>
<artifactId>addressvalidation</artifactId>
</dependency>
<dependency>
<groupId>de.strasser.peter.hexagonal</groupId>
<artifactId>web</artifactId>
</dependency>
<dependency>
<groupId>de.strasser.peter.hexagonal</groupId>
<artifactId>persistence</artifactId>
</dependency>
<dependency>
<groupId>com.tngtech.archunit</groupId>
<artifactId>archunit-junit5</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot-maven-plugin.version}</version>
</plugin>
</plugins>
</build>
</project>