[richfaces-svn-commits] JBoss Rich Faces SVN: r15867 - in root/cdk/trunk/plugins/maven-cdk-plugin/src/it: xml-configured-component and 2 other directories.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Nov 11 20:29:58 EST 2009


Author: alexsmirnov
Date: 2009-11-11 20:29:57 -0500 (Wed, 11 Nov 2009)
New Revision: 15867

Added:
   root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/
   root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/pom.xml
   root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/src/
   root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/src/main/
   root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/src/main/config/
   root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/src/main/java/
   root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/src/main/templates/
Log:
Integration test project for xml-based configuration

Added: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/pom.xml
===================================================================
--- root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/pom.xml	                        (rev 0)
+++ root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/pom.xml	2009-11-12 01:29:57 UTC (rev 15867)
@@ -0,0 +1,58 @@
+<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">
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.richfaces.cdk</groupId>
+  <artifactId>xml-configured-component</artifactId>
+  <name>Test component configured by faces-config</name>
+  <version>0.0.1-SNAPSHOT</version>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.richfaces.cdk</groupId>
+        <artifactId>maven-cdk-plugin</artifactId>
+        <version>4.0.0-SNAPSHOT</version>
+        <configuration>
+        </configuration>
+        <executions>
+           <execution>
+            <id>generate</id>
+            <phase>generate-sources</phase>
+            <goals>
+              <goal>generate</goal>
+            </goals>
+            <inherited>false</inherited>
+            <configuration>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>com.sun.faces</groupId>
+      <artifactId>jsf-api</artifactId>
+      <version>2.0.2-SNAPSHOT</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.richfaces.cdk</groupId>
+      <artifactId>annotations</artifactId>
+      <version>4.0.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+    	<groupId>javax.el</groupId>
+    	<artifactId>el-api</artifactId>
+    	<version>1.2</version>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file


Property changes on: root/cdk/trunk/plugins/maven-cdk-plugin/src/it/xml-configured-component/pom.xml
___________________________________________________________________
Name: svn:mime-type
   + text/plain



More information about the richfaces-svn-commits mailing list