You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2015/07/02 21:06:19 UTC

svn commit: r1688888 - /webservices/woden/trunk/java/pom.xml

Author: veithen
Date: Thu Jul  2 19:06:18 2015
New Revision: 1688888

URL: http://svn.apache.org/r1688888
Log:
Fix the totally broken formatting of the root POM.

Modified:
    webservices/woden/trunk/java/pom.xml

Modified: webservices/woden/trunk/java/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/pom.xml?rev=1688888&r1=1688887&r2=1688888&view=diff
==============================================================================
--- webservices/woden/trunk/java/pom.xml (original)
+++ webservices/woden/trunk/java/pom.xml Thu Jul  2 19:06:18 2015
@@ -17,313 +17,298 @@
  ! 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>
-  <parent>
-	<groupId>org.apache.ws</groupId>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.ws</groupId>
         <artifactId>ws-parent</artifactId>
         <version>1</version>
-  </parent>
-  <groupId>org.apache.woden</groupId>
-  <artifactId>woden</artifactId>
-  <version>1.0-SNAPSHOT</version>
-  <packaging>pom</packaging>
-  <inceptionYear>2005</inceptionYear>
-  <name>Woden</name>
-  <description>The Woden project is a subproject of the Apache Web Services Project to
-    develop a Java class library for reading, manipulating, creating and writing WSDL documents,
-    initially to support WSDL 2.0 but with the longer term aim of supporting past, present and
-    future versions of WSDL.
+    </parent>
+    <groupId>org.apache.woden</groupId>
+    <artifactId>woden</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <inceptionYear>2005</inceptionYear>
+    <name>Woden</name>
+    <description>The Woden project is a subproject of the Apache Web Services Project to
+      develop a Java class library for reading, manipulating, creating and writing WSDL documents,
+      initially to support WSDL 2.0 but with the longer term aim of supporting past, present and
+      future versions of WSDL.
 
-    There are two main deliverables: an API and an implementation. The Woden API consists of
-    a set of Java interfaces. The WSDL 2.0-specific portion of the Woden API conforms to the
-    W3C WSDL 2.0 specification. The implementation will be a high performance implementation
-    directly usable in other Apache projects such as Axis2.
-  </description>
-  <url>http://ws.apache.org/woden/</url>
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/woden/trunk/java/</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/woden/trunk/java/</developerConnection>
-    <url>http://svn.apache.org/viewvc/webservices/woden/trunk/java/</url>
-  </scm>
-  <reporting>
-    <plugins>
-      <plugin>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <version>2.8</version>
-        <reportSets>
-          <reportSet>
-            <reports/>
-          </reportSet>
-        </reportSets>
-      </plugin>
-    </plugins>
-  </reporting>
-  <mailingLists>
-    <mailingList>
-      <name>Woden Developers</name>
-      <subscribe>dev-subscribe@ws.apache.org</subscribe>
-      <unsubscribe>dev-unsubscribe@ws.apache.org</unsubscribe>
-      <archive>http://mail-archives.apache.org/mod_mbox/ws-dev/</archive>
-      <post>dev@ws.apache.org</post>
-    </mailingList>
-  </mailingLists>
-  <issueManagement>
-    <system>jira</system>
-    <url>http://issues.apache.org/jira/browse/Woden</url>
-  </issueManagement>
-  <licenses>
-    <license>
-      <name>The Apache Software License, Version 2.0</name>
-      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-  <organization>
-    <name>Apache Software Foundation</name>
-    <url>http://www.apache.org/</url>
-  </organization>
-  <dependencies>  
-	  
-   
-	  <!-- Test dependencies -->
-	  <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>3.8.2</version>
-      <scope>test</scope>
-    </dependency>
-	
-  </dependencies>
-  <build>
-      <pluginManagement>
-          <plugins>
-              <plugin>
-                  <groupId>org.apache.rat</groupId>
-                  <artifactId>apache-rat-plugin</artifactId>
-                  <version>0.11</version>
-                  <configuration>
-                      <excludes>
-                          <exclude>legal/LICENSE.xerces</exclude>
-                          <exclude>legal/LICENSE.dom</exclude>
-                          <exclude>legal/LICENSE.sax</exclude>
-                          <exclude>legal/LICENSE.wsdl4j.html</exclude>
-                          <exclude>woden-1.0.0M6-test-results.html</exclude>
-                          <exclude>ant-test/validation-results.xml</exclude>
-                          <exclude>ant-test/documents-bad-report.xml</exclude>
-                          <exclude>ant-test/documents-good-report.xml</exclude>
-                          <exclude>ant-test/validation-results-without-ids.xml</exclude>
-                          <exclude>ant-test/test-suite-results.zip</exclude>
-                          <exclude>**/META-INF/MANIFEST.MF</exclude>
-                          <exclude>**/about-this-package</exclude>
-                      </excludes>
-                  </configuration>
-              </plugin>
-          </plugins>
-      </pluginManagement>
-
-
-      <plugins>
-          <plugin>
-              <groupId>org.apache.rat</groupId>
-              <artifactId>apache-rat-plugin</artifactId>
-              <version>0.11</version>
-              <executions>
-                  <execution>
-                      <phase>verify</phase>
-                      <goals>
-                          <goal>check</goal>
-                      </goals>
-                  </execution>
-              </executions>
-          </plugin>
+      There are two main deliverables: an API and an implementation. The Woden API consists of
+      a set of Java interfaces. The WSDL 2.0-specific portion of the Woden API conforms to the
+      W3C WSDL 2.0 specification. The implementation will be a high performance implementation
+      directly usable in other Apache projects such as Axis2.
+    </description>
+    <url>http://ws.apache.org/woden/</url>
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/woden/trunk/java/</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/woden/trunk/java/</developerConnection>
+        <url>http://svn.apache.org/viewvc/webservices/woden/trunk/java/</url>
+    </scm>
+    <reporting>
+        <plugins>
             <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                    <compilerArgument>-g</compilerArgument>
-                </configuration>
+                <artifactId>maven-project-info-reports-plugin</artifactId>
+                <version>2.8</version>
+                <reportSets>
+                    <reportSet>
+                        <reports/>
+                    </reportSet>
+                </reportSets>
             </plugin>
-      </plugins> 
-  </build>
-  <repositories>
-    <repository>
-      <id>apache.snapshots</id>
-      <name>Apache Snapshot Repository</name>
-      <url>http://repository.apache.org/snapshots</url>
-      <releases>
-        <enabled>false</enabled>
-      </releases>
-    </repository>
-  </repositories>
-  <distributionManagement>
-    <snapshotRepository>
-      <id>apache.snapshots</id>
-      <name>Apache Snapshot Repository</name>
-      <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
-      <uniqueVersion>false</uniqueVersion>
-    </snapshotRepository>
-    <site>
-      <id>website</id>
-      <url>scm:svn:https://svn.apache.org/repos/asf/webservices/website/woden</url>
-    </site>
-  </distributionManagement>
- 
-	<profiles>
-		<!-- use for usual developer builds -->
-		<profile>
-			<id>build</id>
-			<activation>
-				<activeByDefault>true</activeByDefault>
-			</activation>
-			<modules>				
-				<module>woden-core</module>
-				<module>woden-tests</module>
-				<module>woden-tool</module>
-				<module>woden-converter-maven-plugin</module>
-				<module>woden-ant</module>
-			</modules>
-		</profile>
-		
-		<!-- use for Maven2 releases -P m2_release
-			
-			 -->
-		<profile>
-			<id>m2_release</id>
-			<modules>				
-				<module>woden-core</module>
-				<module>woden-tool</module>
-				<module>woden-converter-maven-plugin</module>
-				<module>woden-ant</module>
-				<module>woden-dist</module>
-			</modules>
-                         <build>
-                           <plugins>
-                              <plugin>
-                                <groupId>org.apache.maven.plugins</groupId>
-                                <artifactId>maven-gpg-plugin</artifactId>
-                                <version>1.1</version>                                   
-                              </plugin>
-                              <plugin>
-                                <groupId>org.apache.maven.plugins</groupId>
-                                <artifactId>maven-javadoc-plugin</artifactId>
-                                <version>2.6.1</version>
-                                <configuration>
-                                  <excludePackageNames>org.apache.woden.internal</excludePackageNames>
-                                </configuration>
-                                <executions>
-                                  <execution>
-                                        <id>aggregate</id>
-                                        <goals>
-                                            <goal>aggregate</goal>
-                                        </goals>
-                                        <phase>package</phase>
-                                   </execution>
-                                 </executions>
-                              </plugin>
-                              <plugin>
-                                 <groupId>org.apache.maven.plugins</groupId> 
-                                 <artifactId>maven-release-plugin</artifactId>
-                                 <version>2.0-beta-9</version> 
-                                 <configuration>
-                                   <tagBase>https://svn.apache.org/repos/asf/webservices/woden/tags/</tagBase>
-                                   <autoVersionSubmodules>true</autoVersionSubmodules>
-                                    <!-- The default value "clean verify" is not appropriate. If the install
-	                                 phase is not executed, then the current build will pick up artifacts
-	                                 from a previous build. -->
-                                   <preparationGoals>clean install</preparationGoals>
-                                  </configuration>
-                               </plugin> 
-                           </plugins>
-                        </build>			
-		</profile>
-		<!-- use for distrubution-->
-		<!-- mvn clean package assembly:assembly  antrun:run  -P dist -->
-		<profile>
-			<id>dist</id>
-			<modules>				
-				<module>woden-ant</module>   
-				<module>woden-core</module>
-				<module>woden-tool</module>
-				<module>woden-converter-maven-plugin</module>
-			</modules>
-			<build>  
-               <plugins>
-			     <plugin>
-					<groupId>org.apache.maven.plugins</groupId>
-					<artifactId>maven-javadoc-plugin</artifactId>
-					<version>2.6.1</version>
-					<configuration> 
-                        <excludePackageNames>org.apache.woden.internal</excludePackageNames>
-			    	</configuration>
-					<executions>
-						<execution>
-							<id>aggregate</id>
-							<goals>
-								<goal>aggregate</goal>
-							</goals>
-							<phase>package</phase>
-						</execution>
-                 </executions>
-				</plugin>
-		<plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-antrun-plugin</artifactId>  
-          <version>1.2</version>
-		 <inherited>false</inherited>                
-         <configuration> 
-            <tasks>		 
-                  <echo message="Create checksums for the .zip, .tar.gz and .tar.bz2 files in dist " />
-				    <checksum todir="${project.build.directory}">
-                       <fileset dir="${project.build.directory}">
-						<include name="*.tar.gz" />
-						<include name="*.tar.bz2" />
-						<include name="*.zip" />
-                    </fileset>
-                   </checksum>
-				    <checksum algorithm="SHA" todir="${project.build.directory}">
-                       <fileset dir="${project.build.directory}">
-						<include name="*.tar.gz" />
-						<include name="*.tar.bz2" />
-						<include name="*.zip" />
-                    </fileset>
-                   </checksum>
-			</tasks>
-
-	     </configuration>
-        
-      </plugin>
-      </plugins> 	  
-	  	<pluginManagement>
+        </plugins>
+    </reporting>
+    <mailingLists>
+        <mailingList>
+            <name>Woden Developers</name>
+            <subscribe>dev-subscribe@ws.apache.org</subscribe>
+            <unsubscribe>dev-unsubscribe@ws.apache.org</unsubscribe>
+            <archive>http://mail-archives.apache.org/mod_mbox/ws-dev/</archive>
+            <post>dev@ws.apache.org</post>
+        </mailingList>
+    </mailingLists>
+    <issueManagement>
+        <system>jira</system>
+        <url>http://issues.apache.org/jira/browse/Woden</url>
+    </issueManagement>
+    <licenses>
+        <license>
+            <name>The Apache Software License, Version 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+    <organization>
+        <name>Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+    <dependencies>
+        <!-- Test dependencies -->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.2</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <build>
+        <pluginManagement>
             <plugins>
                 <plugin>
-                    <groupId>org.apache.maven.plugins</groupId>
-                    <artifactId>maven-assembly-plugin</artifactId>
+                    <groupId>org.apache.rat</groupId>
+                    <artifactId>apache-rat-plugin</artifactId>
+                    <version>0.11</version>
                     <configuration>
-                        <descriptors>
-                            <descriptor>src/main/assembly/dom.xml</descriptor>
-                            <descriptor>src/main/assembly/om.xml</descriptor> 
-                            <descriptor>src/main/assembly/src.xml</descriptor>
-                        </descriptors>
-                        <tarLongFileMode>gnu</tarLongFileMode>
+                        <excludes>
+                            <exclude>legal/LICENSE.xerces</exclude>
+                            <exclude>legal/LICENSE.dom</exclude>
+                            <exclude>legal/LICENSE.sax</exclude>
+                            <exclude>legal/LICENSE.wsdl4j.html</exclude>
+                            <exclude>woden-1.0.0M6-test-results.html</exclude>
+                            <exclude>ant-test/validation-results.xml</exclude>
+                            <exclude>ant-test/documents-bad-report.xml</exclude>
+                            <exclude>ant-test/documents-good-report.xml</exclude>
+                            <exclude>ant-test/validation-results-without-ids.xml</exclude>
+                            <exclude>ant-test/test-suite-results.zip</exclude>
+                            <exclude>**/META-INF/MANIFEST.MF</exclude>
+                            <exclude>**/about-this-package</exclude>
+                        </excludes>
                     </configuration>
                 </plugin>
-	
-
             </plugins>
         </pluginManagement>
-  </build>
-		</profile>
-	</profiles>
-	
-
- <properties>
-		<bundle.plugin.version>2.3.7</bundle.plugin.version>
-		<apache.xmlSchema.version>2.1.1-SNAPSHOT</apache.xmlSchema.version>
-		<apache.ant.version>1.7.1</apache.ant.version>
-		<wsdl4j.version>1.6.2</wsdl4j.version>
-		<lof4j.version>1.2.15</lof4j.version>
-	    <commons.logging.version>1.1.1</commons.logging.version>
- </properties>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+                <version>0.11</version>
+                <executions>
+                    <execution>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                    <compilerArgument>-g</compilerArgument>
+                </configuration>
+            </plugin>
+        </plugins> 
+    </build>
+    <repositories>
+        <repository>
+            <id>apache.snapshots</id>
+            <name>Apache Snapshot Repository</name>
+            <url>http://repository.apache.org/snapshots</url>
+            <releases>
+                <enabled>false</enabled>
+            </releases>
+        </repository>
+    </repositories>
+    <distributionManagement>
+        <snapshotRepository>
+            <id>apache.snapshots</id>
+            <name>Apache Snapshot Repository</name>
+            <url>scpexe://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+            <uniqueVersion>false</uniqueVersion>
+        </snapshotRepository>
+        <site>
+            <id>website</id>
+            <url>scm:svn:https://svn.apache.org/repos/asf/webservices/website/woden</url>
+        </site>
+    </distributionManagement>
+    <profiles>
+        <!-- use for usual developer builds -->
+        <profile>
+            <id>build</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <modules>                
+                <module>woden-core</module>
+                <module>woden-tests</module>
+                <module>woden-tool</module>
+                <module>woden-converter-maven-plugin</module>
+                <module>woden-ant</module>
+            </modules>
+        </profile>
+        <!-- use for Maven2 releases -P m2_release -->
+        <profile>
+            <id>m2_release</id>
+            <modules>                
+                <module>woden-core</module>
+                <module>woden-tool</module>
+                <module>woden-converter-maven-plugin</module>
+                <module>woden-ant</module>
+                <module>woden-dist</module>
+            </modules>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-gpg-plugin</artifactId>
+                        <version>1.1</version>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <version>2.6.1</version>
+                        <configuration>
+                            <excludePackageNames>org.apache.woden.internal</excludePackageNames>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>aggregate</id>
+                                <goals>
+                                    <goal>aggregate</goal>
+                                </goals>
+                                <phase>package</phase>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId> 
+                        <artifactId>maven-release-plugin</artifactId>
+                        <version>2.0-beta-9</version> 
+                        <configuration>
+                            <tagBase>https://svn.apache.org/repos/asf/webservices/woden/tags/</tagBase>
+                            <autoVersionSubmodules>true</autoVersionSubmodules>
+                            <!-- The default value "clean verify" is not appropriate. If the install
+                                 phase is not executed, then the current build will pick up artifacts
+                                 from a previous build. -->
+                            <preparationGoals>clean install</preparationGoals>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+        <!-- use for distrubution-->
+        <!-- mvn clean package assembly:assembly  antrun:run  -P dist -->
+        <profile>
+            <id>dist</id>
+            <modules>
+                <module>woden-ant</module>   
+                <module>woden-core</module>
+                <module>woden-tool</module>
+                <module>woden-converter-maven-plugin</module>
+            </modules>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <version>2.6.1</version>
+                        <configuration> 
+                            <excludePackageNames>org.apache.woden.internal</excludePackageNames>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>aggregate</id>
+                                <goals>
+                                    <goal>aggregate</goal>
+                                </goals>
+                                <phase>package</phase>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-antrun-plugin</artifactId>
+                        <version>1.2</version>
+                        <inherited>false</inherited>
+                        <configuration>
+                            <tasks>
+                                <echo message="Create checksums for the .zip, .tar.gz and .tar.bz2 files in dist " />
+                                <checksum todir="${project.build.directory}">
+                                    <fileset dir="${project.build.directory}">
+                                        <include name="*.tar.gz" />
+                                        <include name="*.tar.bz2" />
+                                        <include name="*.zip" />
+                                    </fileset>
+                                </checksum>
+                                <checksum algorithm="SHA" todir="${project.build.directory}">
+                                    <fileset dir="${project.build.directory}">
+                                        <include name="*.tar.gz" />
+                                        <include name="*.tar.bz2" />
+                                        <include name="*.zip" />
+                                    </fileset>
+                                </checksum>
+                            </tasks>
+                        </configuration>
+                    </plugin>
+                </plugins>
+                <pluginManagement>
+                    <plugins>
+                        <plugin>
+                            <groupId>org.apache.maven.plugins</groupId>
+                            <artifactId>maven-assembly-plugin</artifactId>
+                            <configuration>
+                                <descriptors>
+                                    <descriptor>src/main/assembly/dom.xml</descriptor>
+                                    <descriptor>src/main/assembly/om.xml</descriptor> 
+                                    <descriptor>src/main/assembly/src.xml</descriptor>
+                                </descriptors>
+                                <tarLongFileMode>gnu</tarLongFileMode>
+                            </configuration>
+                        </plugin>
+                    </plugins>
+                </pluginManagement>
+            </build>
+        </profile>
+    </profiles>
+    <properties>
+        <bundle.plugin.version>2.3.7</bundle.plugin.version>
+        <apache.xmlSchema.version>2.1.1-SNAPSHOT</apache.xmlSchema.version>
+        <apache.ant.version>1.7.1</apache.ant.version>
+        <wsdl4j.version>1.6.2</wsdl4j.version>
+        <lof4j.version>1.2.15</lof4j.version>
+        <commons.logging.version>1.1.1</commons.logging.version>
+    </properties>
 </project>