You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2008/07/22 14:48:40 UTC

svn commit: r678742 - /myfaces/myfaces-build-tools/trunk/maven2-plugins/pom.xml

Author: skitching
Date: Tue Jul 22 05:48:40 2008
New Revision: 678742

URL: http://svn.apache.org/viewvc?rev=678742&view=rev
Log:
Add simple "module" pom that builds code in subdirs

Added:
    myfaces/myfaces-build-tools/trunk/maven2-plugins/pom.xml   (with props)

Added: myfaces/myfaces-build-tools/trunk/maven2-plugins/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/myfaces-build-tools/trunk/maven2-plugins/pom.xml?rev=678742&view=auto
==============================================================================
--- myfaces/myfaces-build-tools/trunk/maven2-plugins/pom.xml (added)
+++ myfaces/myfaces-build-tools/trunk/maven2-plugins/pom.xml Tue Jul 22 05:48:40 2008
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you 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.
+-->
+
+<!--
+  - A "module" pom whose purpose is simply to build all maven modules
+  - in the subdirectories. This is NOT the parent pom of any project,
+  - and is not expected to ever be released.
+  -->
+
+<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>
+
+  <parent>
+    <groupId>org.apache.myfaces</groupId>
+    <artifactId>myfaces</artifactId>
+    <version>6</version>
+  </parent>
+
+  <groupId>org.apache.myfaces.buildtools</groupId>
+  <artifactId>myfaces-plugin-module</artifactId>
+  <version>1-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>Apache MyFaces Buildtools Maven2 Plugin Module</name>
+  <url>http://myfaces.apache.org/build-tools/plugins</url>
+
+  <modules>
+    <module>myfaces-plugin-parent</module>
+    <module>myfaces-builder-annotations</module>
+    <module>myfaces-builder-plugin</module>
+    <module>myfaces-faces-plugin</module>
+    <module>myfaces-i18n-plugin</module>
+    <module>myfaces-javacc-plugin</module>
+    <module>myfaces-javascript-plugin</module>
+    <module>myfaces-jdev-plugin</module>
+    <module>myfaces-tagdoc-plugin</module>
+    <module>myfaces-wagon-plugin</module>
+    <module>myfaces-xrts-plugin</module>
+  </modules>
+
+</project>

Propchange: myfaces/myfaces-build-tools/trunk/maven2-plugins/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native