{scrollbar}

Using MyFaces in a project built with Maven

MyFaces can easily be added to a project built with Maven. The instruction below should work with version MyFaces 1.1.2+ and Maven 2.0.4+ http://maven.apache.org/download.html.

Addition to your project's pom.xml

xml <dependencies> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-api</artifactId> <version>1.1.4</version> </dependency> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-impl</artifactId> <version>1.1.4</version> </dependency> <dependency> <groupId>org.apache.myfaces.tomahawk</groupId> <artifactId>tomahawk</artifactId> <version>1.1.4</version> </dependency> </dependencies>

Using SNAPSHOT versions

If you want to use SNAPSHOT versions of MyFaces code, ie the bleeding edge that is not yet an official release, then add the following repository to your project's pom or your settings.xml file.

xml <repository> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>apache.snapshots</id> <name>Apache Snapshot Repository</name> <url>https://repository.apache.org/content/repositories/snapshots</url> </repository>

Some useful Maven commands

For more information on Maven see http://maven.apache.org

{scrollbar}