Author: nbelaevski
Date: 2009-07-10 09:47:51 -0400 (Fri, 10 Jul 2009)
New Revision: 14890
Added:
examples-sandbox/trunk/components/
examples-sandbox/trunk/components/ajax/
examples-sandbox/trunk/components/pom.xml
Log:
jsf2.0/tests/ajax moved to examples-sandbox/trunk/components
Copied: examples-sandbox/trunk/components/ajax (from rev 14889,
branches/jsf2.0/tests/ajax)
Copied: examples-sandbox/trunk/components/pom.xml (from rev 14887,
branches/jsf2.0/tests/pom.xml)
===================================================================
--- examples-sandbox/trunk/components/pom.xml (rev 0)
+++ examples-sandbox/trunk/components/pom.xml 2009-07-10 13:47:51 UTC (rev 14890)
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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>
+ <artifactId>root</artifactId>
+ <groupId>org.richfaces</groupId>
+ <version>4.0.0-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.richfaces</groupId>
+ <artifactId>tests</artifactId>
+ <packaging>pom</packaging>
+ <name>RichFaces test projects</name>
+ <
url>http://labs.jboss.com/jbossrichfaces/tests</url>
+ <properties>
+ <!-- -->
+ </properties>
+ <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are
not included by default -->
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-source</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <index>true</index>
+ <manifest>
+ <addDefaultSpecificationEntries>
+ true
+ </addDefaultSpecificationEntries>
+ <addDefaultImplementationEntries>
+ true
+ </addDefaultImplementationEntries>
+ </manifest>
+ <manifestEntries>
+ <mode>development</mode>
+ <Build-Number>${buildNumber}</Build-Number>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.richfaces.framework</groupId>
+ <artifactId>jsf-test</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+ <modules>
+ <module>ajax</module>
+ </modules>
+</project>
\ No newline at end of file