strolch-maven-archetypes/pom.xml

84 lines
2.8 KiB
XML

<?xml version="1.0"?>
<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>
<groupId>li.strolch</groupId>
<artifactId>li.strolch-maven-archetypes</artifactId>
<version>0.1.0-SNAPSHOT</version>
<name>li.strolch-maven-archetypes</name>
<description>Module build for strolch maven archetypes</description>
<packaging>pom</packaging>
<url>http://www.strolch.li</url>
<inceptionYear>2022</inceptionYear>
<issueManagement>
<system>Github Issues</system>
<url>https://github.com/strolch-li/strolch/issues</url>
</issueManagement>
<scm>
<connection>scm:git:https://github.com/strolch-li/strolch-maven-archetypes.git</connection>
<developerConnection>scm:git:https://github.com/strolch-li/strolch-maven-archetypes.git</developerConnection>
<url>https://github.com/strolch-li/strolch-maven-archetypes</url>
</scm>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<organization>
<name>Strolch</name>
<url>http://www.strolch.li</url>
</organization>
<developers>
<developer>
<id>eitch</id>
<name>Robert von Burg</name>
<email>eitch@eitchnet.ch</email>
<url>http://www.eitchnet.ch</url>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format>
<buildTimestamp>${maven.build.timestamp}</buildTimestamp>
<maven-resources-plugin.version>3.2.0</maven-resources-plugin.version>
<archetype-packaging.version>3.2.0</archetype-packaging.version>
</properties>
<modules>
<module>li.strolch.mvn.archetype.main</module>
<module>li.strolch.mvn.archetype.webapp</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin.version}</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>