You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2010/06/04 20:46:30 UTC

svn commit: r951525 - /openwebbeans/trunk/distribution/pom.xml

Author: struberg
Date: Fri Jun  4 18:46:29 2010
New Revision: 951525

URL: http://svn.apache.org/viewvc?rev=951525&view=rev
Log:
OWB-275 cleanup code and maven build 

Modified:
    openwebbeans/trunk/distribution/pom.xml

Modified: openwebbeans/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/openwebbeans/trunk/distribution/pom.xml?rev=951525&r1=951524&r2=951525&view=diff
==============================================================================
--- openwebbeans/trunk/distribution/pom.xml (original)
+++ openwebbeans/trunk/distribution/pom.xml Fri Jun  4 18:46:29 2010
@@ -1,21 +1,26 @@
 <?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.
-	-->
+<!--
+    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.
+-->
+
 <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>
+         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.openwebbeans</groupId>
@@ -31,6 +36,11 @@
     <name>OpenWebBeans :: Distribution</name>
     <description>Builds the complete OpenWebBeans  distribution bundles</description>
 
+    <properties>
+        <siteId>/OWB/1.0.0-SNAPSHOT/distribution</siteId>
+        <skipReports>true</skipReports>
+    </properties>
+
     <build>
         <plugins>
             <plugin>
@@ -40,7 +50,7 @@
                 <configuration>
                     <tarLongFileMode>gnu</tarLongFileMode>
                     <descriptors>
-                       <!-- <descriptor>src/assembly/dist-all.xml</descriptor> -->
+                        <!-- <descriptor>src/assembly/dist-all.xml</descriptor> -->
                         <descriptor>src/assembly/dist-sources.xml</descriptor>
                         <descriptor>src/assembly/dist-binary.xml</descriptor>
                     </descriptors>
@@ -54,31 +64,29 @@
                     </execution>
                 </executions>
             </plugin>
-             <plugin>
+            <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-install-plugin</artifactId>
                 <configuration>
                     <createChecksum>true</createChecksum>
                 </configuration>
-            </plugin> 
-	      <plugin>
-		<groupId>org.apache.maven.plugins</groupId>
-		<artifactId>maven-gpg-plugin</artifactId>
-		<executions>
-		  <execution>
-		    <id>sign-artifacts</id>
-		    <phase>verify</phase>
-		    <goals>
-		      <goal>sign</goal>
-		    </goals>
-		  </execution>
-		</executions>
-	      </plugin>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-gpg-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>sign-artifacts</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>sign</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
         </plugins>
     </build>
-    <properties>
-      <siteId>/OWB/1.0.0-SNAPSHOT/distribution</siteId>
-    </properties>
+
     <!--
         The assemblies work off of dependency sets since the stuff to be
         aggregated is no longer sub-modules after moving assembly itself