edu-it-myfaces
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.encoway</groupId> <artifactId>edu-it-myfaces</artifactId> <version>1.6.1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.encoway</groupId> <artifactId>edu-parent</artifactId> <version>1.6.1</version> </parent> <artifactId>edu-it-myfaces</artifactId> <packaging>war</packaging> <name>Event Driven Updates MyFaces Integration Tests</name> <description>Integration tests running on MyFaces</description> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>edu-it</artifactId> </dependency> <dependency> <groupId>org.apache.myfaces.core</groupId> <artifactId>myfaces-impl</artifactId> <version>2.2.2</version> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> </dependency> <!-- testing --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>edu-it</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <!-- the following dependencies have to be declared --> <!-- as of http://jira.codehaus.org/browse/MNG-1378 --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.zeroturnaround</groupId> <artifactId>jrebel-maven-plugin</artifactId> </plugin> </plugins> </pluginManagement> </build> </project>