data-generator/pom.xml

47 lines
1.2 KiB
XML
Raw Normal View History

2023-01-17 16:14:00 +01:00
<?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"
2022-05-09 11:17:56 +02:00
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>
<artifactId>data-generator</artifactId>
2023-01-17 16:14:00 +01:00
<groupId>it.cavallium</groupId>
<version>${revision}</version>
<packaging>pom</packaging>
2022-05-09 11:17:56 +02:00
<properties>
2023-01-17 16:14:00 +01:00
<revision>1.0.0.0-SNAPSHOT</revision>
2022-05-09 11:17:56 +02:00
</properties>
2023-01-17 16:14:00 +01:00
<modules>
<module>data-generator-plugin</module>
<module>data-generator-runtime</module>
</modules>
2021-03-01 21:04:06 +01:00
2022-05-09 11:17:56 +02:00
<build>
<plugins>
2022-04-11 11:39:54 +02:00
<plugin>
2022-05-11 10:22:58 +02:00
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.1.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>oss</flattenMode>
</configuration>
2022-04-11 11:39:54 +02:00
<executions>
<execution>
2022-05-11 10:22:58 +02:00
<id>flatten</id>
<phase>process-resources</phase>
2022-04-11 11:39:54 +02:00
<goals>
<goal>flatten</goal>
</goals>
</execution>
2022-05-11 10:22:58 +02:00
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
2022-04-11 11:39:54 +02:00
</executions>
</plugin>
2022-05-09 11:17:56 +02:00
</plugins>
</build>
2023-01-17 16:14:00 +01:00
</project>