You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2006/04/04 23:09:15 UTC

svn commit: r391416 - /incubator/tobago/trunk/tobago-assembly/pom.xml

Author: bommel
Date: Tue Apr  4 14:09:14 2006
New Revision: 391416

URL: http://svn.apache.org/viewcvs?rev=391416&view=rev
Log:
added assembly

Added:
    incubator/tobago/trunk/tobago-assembly/pom.xml

Added: incubator/tobago/trunk/tobago-assembly/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/tobago-assembly/pom.xml?rev=391416&view=auto
==============================================================================
--- incubator/tobago/trunk/tobago-assembly/pom.xml (added)
+++ incubator/tobago/trunk/tobago-assembly/pom.xml Tue Apr  4 14:09:14 2006
@@ -0,0 +1,130 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ * Copyright 2002-2005 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+-->
+    
+<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>
+  <artifactId>tobago-assembly</artifactId>
+  <packaging>pom</packaging>
+  <name>Tobago Assembly</name>
+  <description>This is the MyFaces Tobago Assembly</description>
+
+  <parent>
+    <groupId>org.apache.myfaces.tobago</groupId>
+    <artifactId>tobago</artifactId>
+    <version>1.0.7-SNAPSHOT</version>
+  </parent>
+
+
+  <build>
+
+    <plugins>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>dependency-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>copy-javadoc</id>
+            <phase>package</phase>
+            <goals>
+              <goal>copy</goal>
+            </goals>
+            <configuration>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>org.apache.myfaces.tobago</groupId>
+                  <artifactId>tobago-core</artifactId>
+                  <version>${version}</version>
+                  <classifier>javadoc</classifier>
+                </artifactItem>
+              </artifactItems>
+              <outputDirectory>${project.build.directory}/javadoc</outputDirectory>
+            </configuration>
+          </execution>
+
+          <execution>
+            <id>copy-tlddoc</id>
+            <phase>package</phase>
+            <goals>
+              <goal>copy</goal>
+            </goals>
+            <configuration>
+              <artifactItems>
+
+                <artifactItem>
+                  <groupId>org.apache.myfaces.tobago</groupId>
+                  <artifactId>tobago-core</artifactId>
+                  <version>${version}</version>
+                  <classifier>tlddoc</classifier>
+                </artifactItem>
+
+               </artifactItems>
+               <outputDirectory>${project.build.directory}/tlddoc</outputDirectory>
+             </configuration>
+           </execution>
+
+        </executions>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <version>2.0-beta-1</version>
+        <configuration>
+          <descriptor>src/main/assembly/dep.xml</descriptor>
+          <finalName>myfaces-tobago-${version}</finalName>
+          <outputDirectory>target/assembly/out</outputDirectory>
+          <workDirectory>target/assembly/work</workDirectory>
+        </configuration>
+      </plugin>
+
+       <plugin>
+        <groupId>org.apache.myfaces.maven</groupId>
+        <artifactId>wagon-maven-plugin</artifactId>
+        <version>1.0.2-SNAPSHOT</version>
+        <configuration>
+          <id>myfaces-nightly-builds</id>
+          <url>scpexe://minotaur.apache.org/www/cvs.apache.org/builds/myfaces/nightly</url>
+          <inputDirectory>target/assembly/out</inputDirectory>
+        </configuration>
+      </plugin>
+
+    </plugins>
+
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.myfaces.tobago</groupId>
+      <artifactId>tobago-theme-richmond</artifactId>
+      <version>${version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>javax.servlet</groupId>
+          <artifactId>jsp-api</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>javax.servlet</groupId>
+          <artifactId>servlet-api</artifactId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+  </dependencies>
+  
+</project>