131 lines
4.8 KiB
XML
131 lines
4.8 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.2.RELEASE</version>
|
|
<relativePath/>
|
|
</parent>
|
|
|
|
<groupId>de.77zzcx7.financer</groupId>
|
|
<artifactId>financer-parent</artifactId>
|
|
<version>48</version>
|
|
<packaging>pom</packaging>
|
|
<description>The umbrella for all financer projects</description>
|
|
<name>financer-parent</name>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.9</maven.compiler.source>
|
|
<maven.compiler.target>1.9</maven.compiler.target>
|
|
<java.version>1.9</java.version>
|
|
<!-- Property to define the parallel deployment version.
|
|
See e.g. https://tomcat.apache.org/tomcat-8.5-doc/config/context.html
|
|
Should be the same as the project.version but padded with zeros to six digits. -->
|
|
<parallelDeploymentVersion>000048</parallelDeploymentVersion>
|
|
<!-- Same as on yggdrasil -->
|
|
<tomcat.version>9.0.41</tomcat.version>
|
|
<!-- Overwrite H2 version because only in > .197 windows functions are available -->
|
|
<h2.version>1.4.199</h2.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>financer-common</module>
|
|
<module>financer-server</module>
|
|
<module>financer-web-client</module>
|
|
</modules>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>77zzcx7-snapshots</id>
|
|
<url>http://192.168.10.4:8100/snapshots/</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>77zzcx7-releases</id>
|
|
<url>http://192.168.10.4:8100/releases/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>**/*IntegrationTest</exclude>
|
|
</excludes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-collections4</artifactId>
|
|
<version>4.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.12</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>28.0-jre</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.financer</groupId>
|
|
<artifactId>financer-common</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.77zzcx7.push-service</groupId>
|
|
<artifactId>push-service-client-lib</artifactId>
|
|
<version>5</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>integration-tests</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
<configuration>
|
|
<excludes>
|
|
<exclude>none</exclude>
|
|
</excludes>
|
|
<includes>
|
|
<include>**/*IntegrationTest</include>
|
|
</includes>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|