blob: b03dd49f29b9a8488a20740499c140b1150f34a6 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<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>
<parent>
<artifactId>myfaces</artifactId>
<groupId>org.apache.myfaces</groupId>
<version>6</version>
</parent>
<groupId>org.apache.myfaces.html5-comp-lib</groupId>
<artifactId>html5-comp-lib-project</artifactId>
<packaging>pom</packaging>
<name>Html5 Renderkit for Apache MyFaces Parent Project </name>
<version>0.0.3-SNAPSHOT</version>
<description>Apache MyFaces Html5 Renderkit is a sub-project of Apache MyFaces which provides Html5 enabled components.</description>
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/gsoc/html5-comp-lib/trunk</connection>
<developerConnection>scm:svn:http://svn.apache.org/repos/asf/myfaces/gsoc/html5-comp-lib/trunk</developerConnection>
</scm>
<modules>
<module>html5-comp-lib-core</module>
<module>myfaces-shared-html5</module>
<module>html5-comp-lib-examples</module>
</modules>
<repositories>
<repository>
<id>java.net</id>
<url>http://download.java.net/maven/2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>Maven2 Repo1</id>
<name>Maven2 Repo1</name>
<url>http://repo1.maven.org/maven2</url>
<layout>legacy</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>java.net.2</id>
<name>java.net Maven 2 Repository</name>
<url>http://download.java.net/maven/2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>codehaus</id>
<name>codehaus</name>
<url>http://repository.codehaus.org</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>jboss</id>
<name>jboss</name>
<url>http://repository.jboss.com/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- necessary! -->
<repository>
<id>myfaces-snapshots</id>
<name>myfaces-snapshots</name>
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<!-- for myfaces builder plugin -->
<pluginRepository>
<id>myfaces-snapshots</id>
<name>myfaces-snapshots</name>
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-api</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-impl</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.5</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-source</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!--
- Whenever the site will be generated, need to use the command
- mvn -Pgenerate-site site
-->
<id>generate-site</id>
<build>
<plugins>
<plugin>
<!-- this plugin will generate the project site. -->
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-6</version>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<!-- disable the plugin for this site project -->
<artifactId>maven-pmd-plugin</artifactId>
<version>2.2</version>
<reportSets>
<reportSet />
</reportSets>
</plugin>
<plugin>
<!-- disable the plugin for this site project -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>1.2</version>
<reportSets>
<reportSet />
</reportSets>
</plugin>
<plugin>
<!-- disable the plugin for this site project -->
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
<version>2.0-beta-1</version>
<reportSets>
<reportSet />
</reportSets>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
<properties>
<shared-core-version>4.0.2</shared-core-version>
</properties>
</project>