Skip to content
Snippets Groups Projects
Commit eddb1780 authored by Nicola Fulvio Calabria's avatar Nicola Fulvio Calabria
Browse files

Update parent-pom.xml

parent 9eb7e9d9
No related branches found
No related tags found
No related merge requests found
...@@ -9,13 +9,14 @@ ...@@ -9,13 +9,14 @@
<version>2.4.5</version> <version>2.4.5</version>
<relativePath/> <!-- lookup parent from repository --> <relativePath/> <!-- lookup parent from repository -->
</parent> </parent>
<version>0.0.2-SNAPSHOT</version> <version>0.0.2-${revision}</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>14</maven.compiler.source> <maven.compiler.source>14</maven.compiler.source>
<maven.compiler.target>14</maven.compiler.target> <maven.compiler.target>14</maven.compiler.target>
<revision>SNAPSHOT</revision>
<zonky.postgres-binaries.version>12.5.0</zonky.postgres-binaries.version> <zonky.postgres-binaries.version>12.5.0</zonky.postgres-binaries.version>
</properties> </properties>
...@@ -141,6 +142,32 @@ ...@@ -141,6 +142,32 @@
<build> <build>
<pluginManagement> <pluginManagement>
<plugins> <plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
<flattenedPomFilename>flattened-parent-pom.xml</flattenedPomFilename>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin> <plugin>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version> <version>2.22.2</version>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment