blob: e6e9d63f265b1a3a2414007495614f90329a538a [file] [log] [blame]
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.myfaces.extensions.validator</groupId>
<artifactId>myfaces-extval-module</artifactId>
<version>1.2.1</version>
<packaging>pom</packaging>
<name>Apache MyFaces Extensions-Validator Module</name>
<url>http://myfaces.apache.org/extensions/validator12</url>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/extensions/validator/branches/12_1_2_1</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/extensions/validator/branches/12_1_2_1</developerConnection>
<url>http://svn.apache.org/viewvc/myfaces/extensions/validator/branches/12_1_2_1</url>
</scm>
<!-- WARNING: DO NOT GENERATE SITE FROM HERE DIRECTLY
Since this project has an async release procedure (not
all modules should be released at once), the parent pom.xml
is not this (there is a module for that). Use maven site
plugin here cause problems when the site is generated.
The procedure must execute site commmand first on parent
module and then on each module listed below.
-->
<modules>
<module>parent</module>
<module>core</module>
<module>validation-modules</module>
<module>component-support</module>
<module>examples</module>
</modules>
<profiles>
<!-- This profile is invoked by -DprepareRelease=true. This allows mvn release:prepare to
run successfully on the assembly projects. -->
<profile>
<id>prepare-release</id>
<activation>
<property>
<name>prepareRelease</name>
</property>
</activation>
<modules>
<module>assembly</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<arguments>-DprepareRelease</arguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>perform-release</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<modules>
<module>assembly</module>
</modules>
</profile>
</profiles>
<properties>
<build.version>1.2.1-SNAPSHOT</build.version>
<jsf.version>1.2.4</jsf.version>
</properties>
</project>