metawidget-faces
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.metawidget.modules.faces</groupId>
<artifactId>metawidget-faces</artifactId>
<version>4.2</version>
</dependency><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">
<parent>
<groupId>org.metawidget.modules.faces</groupId>
<artifactId>faces-parent</artifactId>
<version>4.2</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>metawidget-faces</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.metawidget.modules</groupId>
<artifactId>metawidget-core</artifactId>
<version>${project.version}</version><!--$NO-MVN-MAN-VER$-->
</dependency>
<!-- We actually rely on metawidget-facesannotation, in the sense that it is -->
<!-- in metawidget-html-default.xml. However this creates a circular dependency -->
<!-- under m2eclipse. It only affects those using the fine-grained dependencies -->
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<!-- Mojarra 2.1.4 and above require JDK 1.6 -->
<version>2.1.3</version><!--$NO-MVN-MAN-VER$-->
</dependency>
<!-- Test Bean Validation, and other libraries -->
<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-6.0</artifactId>
<type>pom</type>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>