61 lines
2.1 KiB
XML
61 lines
2.1 KiB
XML
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.pwm-project</groupId>
|
|
<artifactId>pwm-parent</artifactId>
|
|
<version>1.8.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>PWM Password Self Service</name>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>The GNU General Public License (GPL) Version 2</name>
|
|
<url>http://www.gnu.org/licenses/gpl-2.0.html</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
|
|
<organization>
|
|
<name>PWM Project</name>
|
|
<url>http://www.pwm-project.org</url>
|
|
</organization>
|
|
|
|
<properties>
|
|
<build.number>0</build.number> <!-- default in case not set on command line -->
|
|
<build.revision>0</build.revision> <!-- default in case not set on command line -->
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<pwm.minimum.maven.version>3.2</pwm.minimum.maven.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>client</module>
|
|
<module>server</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
<version>3.0.0-M1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>enforce-maven</id>
|
|
<goals>
|
|
<goal>enforce</goal>
|
|
</goals>
|
|
<configuration>
|
|
<rules>
|
|
<requireMavenVersion>
|
|
<version>${pwm.minimum.maven.version}</version>
|
|
</requireMavenVersion>
|
|
</rules>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|