data-generator/pom.xml

65 lines
1.9 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>
2023-04-20 10:11:12 +02:00
<artifactId>datagen-parent</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>
2023-04-20 10:11:12 +02:00
<module>datagen-plugin</module>
<module>datagen</module>
2023-01-17 16:14:00 +01:00
</modules>
2021-03-01 21:04:06 +01:00
2023-01-17 17:52:24 +01:00
<distributionManagement>
<repository>
<id>mchv-release-distribution</id>
<name>MCHV Release Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv</url>
</repository>
<snapshotRepository>
<id>mchv-snapshot-distribution</id>
<name>MCHV Snapshot Apache Maven Packages Distribution</name>
<url>https://mvn.mchv.eu/repository/mchv-snapshot</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:git:https://git.ignuranza.net/andreacavalli/data-generator.git</connection>
<developerConnection>scm:git:https://git.ignuranza.net/andreacavalli/data-generator.git</developerConnection>
<tag>HEAD</tag>
</scm>
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>