blob: 61bfe3904f647134bc263fa2769bb53567715b3e [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>
<packaging>pom</packaging>
<groupId>org.apache.myfaces.extensions.validator</groupId>
<artifactId>validator-project</artifactId>
<name>MyFaces Extensions-Validator Project</name>
<version>${build.version}</version>
<modules>
<module>core</module>
<module>validation-modules</module>
<module>examples</module>
</modules>
<repositories>
<repository>
<id>java.net</id>
<url>http://download.java.net/maven/1</url>
<layout>legacy</layout>
</repository>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/1/</url>
<layout>legacy</layout>
</repository>
<repository>
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
</repository>
</repositories>
<build>
<defaultGoal>install</defaultGoal>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<optimize>false</optimize>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<properties>
<build.version>1.0.1-SNAPSHOT</build.version>
<jsf.version>1.1.5</jsf.version>
</properties>
</project>