You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ch...@apache.org on 2008/06/17 19:41:43 UTC

svn commit: r668767 - in /servicemix/maven-plugins/maven-plugins-pom: ./ branches/ tags/ trunk/ trunk/pom.xml

Author: chirino
Date: Tue Jun 17 10:41:42 2008
New Revision: 668767

URL: http://svn.apache.org/viewvc?rev=668767&view=rev
Log:
adding a parent pom for the maven plugins.

Added:
    servicemix/maven-plugins/maven-plugins-pom/
    servicemix/maven-plugins/maven-plugins-pom/branches/
    servicemix/maven-plugins/maven-plugins-pom/tags/
    servicemix/maven-plugins/maven-plugins-pom/trunk/   (with props)
    servicemix/maven-plugins/maven-plugins-pom/trunk/pom.xml

Propchange: servicemix/maven-plugins/maven-plugins-pom/trunk/
------------------------------------------------------------------------------
--- svn:externals (added)
+++ svn:externals Tue Jun 17 10:41:42 2008
@@ -0,0 +1,5 @@
+jbi-maven-plugin https://svn.apache.org/repos/asf/servicemix/maven-plugins/jbi-maven-plugin/trunk
+xfire-maven-plugin https://svn.apache.org/repos/asf/servicemix/maven-plugins/xfire-maven-plugin/trunk
+res-maven-plugin https://svn.apache.org/repos/asf/servicemix/maven-plugins/res-maven-plugin/trunk
+servicemix-build https://svn.apache.org/repos/asf/servicemix/maven-plugins/servicemix-build/trunk
+

Added: servicemix/maven-plugins/maven-plugins-pom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/maven-plugins/maven-plugins-pom/trunk/pom.xml?rev=668767&view=auto
==============================================================================
--- servicemix/maven-plugins/maven-plugins-pom/trunk/pom.xml (added)
+++ servicemix/maven-plugins/maven-plugins-pom/trunk/pom.xml Tue Jun 17 10:41:42 2008
@@ -0,0 +1,145 @@
+<?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">
+<!--
+
+    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.
+-->
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.servicemix</groupId>
+    <artifactId>servicemix-pom</artifactId>
+    <version>1.0</version>
+  </parent>
+  
+  <groupId>org.apache.servicemix.tooling</groupId>
+  <artifactId>maven-plugins-pom</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  
+  <packaging>pom</packaging>
+  <name>ServiceMix :: Maven2 Plugins POM</name>
+  
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/maven-plugins/maven-plugins-pom/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/maven-plugins/maven-plugins-pom/trunk</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/servicemix/maven-plugins/maven-plugins-pom/trunk</url>
+  </scm>
+  
+  <modules>
+    <module>jbi-maven-plugin</module>
+    <module>res-maven-plugin</module>
+    <module>xfire-maven-plugin</module>
+    <module>servicemix-build</module>
+  </modules>
+  
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jxr-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+  
+  <profiles>
+    <profile>
+      <id>release</id>
+      <build>
+        <plugins>
+    
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-release-plugin</artifactId>
+            <version>2.0-beta-7</version>
+            <configuration>
+              <preparationGoals>clean,verify,install</preparationGoals>
+              <autoVersionSubmodules>true</autoVersionSubmodules>
+            </configuration>
+          </plugin>
+
+          <!-- We want a source jar -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <version>2.0.4</version>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+
+          <!-- We want the JavaDoc JAR published with the release -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-javadoc-plugin</artifactId>
+            <version>2.4</version>
+            <inherited>true</inherited>
+            <configuration>
+              <source>1.5</source>
+            </configuration>
+            <executions>
+              <execution>
+                <id>attach-javadocs</id>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+
+          <!-- We want to sign the artifact, the POM, and all attached artifacts -->
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-gpg-plugin</artifactId>
+            <version>1.0-alpha-4</version>          
+            <inherited>true</inherited>
+            <executions>
+              <execution>
+                <goals>
+                  <goal>sign</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+
+          <!-- We want to deploy the artifact to a staging location for perusal -->
+          <plugin>
+            <inherited>true</inherited>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-deploy-plugin</artifactId>
+            <version>2.3</version>
+            <configuration>
+              <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
+              <updateReleaseInfo>true</updateReleaseInfo>
+            </configuration>
+          </plugin>
+
+        </plugins>
+      </build>
+    </profile>
+
+  </profiles>
+</project>