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/05/03 21:56:19 UTC

svn commit: r1677480 - in /webservices/woden/trunk/java: woden-ant/pom.xml woden-converter-maven-plugin/pom.xml woden-core/pom.xml woden-tests/pom.xml woden-tool/pom.xml

Author: veithen
Date: Sun May  3 19:56:19 2015
New Revision: 1677480

URL: http://svn.apache.org/r1677480
Log:
Normalize white space in POM files.

Modified:
    webservices/woden/trunk/java/woden-ant/pom.xml
    webservices/woden/trunk/java/woden-converter-maven-plugin/pom.xml
    webservices/woden/trunk/java/woden-core/pom.xml
    webservices/woden/trunk/java/woden-tests/pom.xml
    webservices/woden/trunk/java/woden-tool/pom.xml

Modified: webservices/woden/trunk/java/woden-ant/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-ant/pom.xml?rev=1677480&r1=1677479&r2=1677480&view=diff
==============================================================================
--- webservices/woden/trunk/java/woden-ant/pom.xml (original)
+++ webservices/woden/trunk/java/woden-ant/pom.xml Sun May  3 19:56:19 2015
@@ -17,105 +17,104 @@
  ! 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.woden</groupId>
-       <artifactId>woden</artifactId>
-       <version>1.0-SNAPSHOT</version>
-   </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.woden</groupId>
+        <artifactId>woden</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
 
-   <artifactId>woden-ant</artifactId>
-   <name>Woden - Ant</name>
+    <artifactId>woden-ant</artifactId>
+    <name>Woden - Ant</name>
 
-   <build>
-       <resources>
-           <resource>
-               <targetPath>META-INF</targetPath>
-               <directory>../</directory>
-               <includes>
-                   <include>LICENSE</include>
-                   <include>README</include>
-                   <include>NOTICE</include>
-               </includes>
-           </resource>
-           <resource>
-             <directory>src/main/resources</directory>
-           </resource>
-       </resources>
-       <plugins>
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-bundle-plugin</artifactId>
-				<version>${bundle.plugin.version}</version>			
-			</plugin>		  
-       </plugins>
-   </build>
-   
-   <profiles>
-      <profile>
-	     <!--  to run W3C testsuite and results are compared to W3C baseline -->
-		 <id>interop</id>
-		 <build>  
-            <plugins>			     
-		       <plugin>
-                  <groupId>org.apache.maven.plugins</groupId>
-                  <artifactId>maven-antrun-plugin</artifactId>
-                  <version>1.3</version>
-			      <executions>
-                    <execution>
-                       <phase>test</phase>
-                       <configuration>
-                           <tasks>					   
-					           <property name="compile_classpath" refid="maven.compile.classpath" />
-                               <property name="runtime_classpath" refid="maven.runtime.classpath" />
-                               <property name="test_classpath" refid="maven.test.classpath" />                       					
-						       <ant antfile="${basedir}/build.xml"> 
-			                       <target name="getW3cWsdl20" />		
-						           <target name="main" /> 						   
-                               </ant>
-                           </tasks>
-                       </configuration>
-                       <goals>
-                            <goal>run</goal>
-                       </goals>
-                   </execution>
-                  </executions>
-		         <dependencies>		 
-		            <dependency>
-                      <groupId>org.apache.ant</groupId>
-                      <artifactId>ant-trax</artifactId>
-                      <version>${apache.ant.version}</version>					 
-		              <scope>test</scope>
-		            </dependency>
-		            <dependency>
-                       <groupId>org.apache.ant</groupId>
-                       <artifactId>ant-nodeps</artifactId>
-                       <version>${apache.ant.version}</version>
-		               <scope>test</scope>
-                    </dependency>
-		         </dependencies>
-              </plugin>		   
-			 </plugins>
-			</build>
-		</profile>
-	</profiles>
-			   
+    <build>
+        <resources>
+            <resource>
+                <targetPath>META-INF</targetPath>
+                <directory>../</directory>
+                <includes>
+                    <include>LICENSE</include>
+                    <include>README</include>
+                    <include>NOTICE</include>
+                </includes>
+            </resource>
+            <resource>
+              <directory>src/main/resources</directory>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>${bundle.plugin.version}</version>
+            </plugin>
+        </plugins>
+    </build>
 
-   <dependencies>
-	    <dependency>
-			<groupId>org.apache.ant</groupId>
-			<artifactId>ant</artifactId>
-			<version>${apache.ant.version}</version>
-		  </dependency>
-       <dependency>
-           <groupId>org.apache.woden</groupId>
-           <artifactId>woden-core</artifactId>
-           <version>${project.version}</version>
-       </dependency>
-	   <dependency>
-			<groupId>org.apache.woden</groupId>
-			<artifactId>woden-tool</artifactId>
-			<version>${project.version}</version>
-		</dependency>	  
-   </dependencies>
+    <profiles>
+        <profile>
+            <!--  to run W3C testsuite and results are compared to W3C baseline -->
+            <id>interop</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-antrun-plugin</artifactId>
+                        <version>1.3</version>
+                        <executions>
+                            <execution>
+                                <phase>test</phase>
+                                <configuration>
+                                    <tasks>
+                                        <property name="compile_classpath" refid="maven.compile.classpath" />
+                                        <property name="runtime_classpath" refid="maven.runtime.classpath" />
+                                        <property name="test_classpath" refid="maven.test.classpath" />
+                                        <ant antfile="${basedir}/build.xml"> 
+                                            <target name="getW3cWsdl20" />
+                                            <target name="main" />
+                                        </ant>
+                                    </tasks>
+                                </configuration>
+                                <goals>
+                                    <goal>run</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                        <dependencies>
+                            <dependency>
+                                <groupId>org.apache.ant</groupId>
+                                <artifactId>ant-trax</artifactId>
+                                <version>${apache.ant.version}</version>
+                                <scope>test</scope>
+                            </dependency>
+                            <dependency>
+                                <groupId>org.apache.ant</groupId>
+                                <artifactId>ant-nodeps</artifactId>
+                                <version>${apache.ant.version}</version>
+                                <scope>test</scope>
+                            </dependency>
+                        </dependencies>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.ant</groupId>
+            <artifactId>ant</artifactId>
+            <version>${apache.ant.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.woden</groupId>
+            <artifactId>woden-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.woden</groupId>
+            <artifactId>woden-tool</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
 </project>

Modified: webservices/woden/trunk/java/woden-converter-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-converter-maven-plugin/pom.xml?rev=1677480&r1=1677479&r2=1677480&view=diff
==============================================================================
--- webservices/woden/trunk/java/woden-converter-maven-plugin/pom.xml (original)
+++ webservices/woden/trunk/java/woden-converter-maven-plugin/pom.xml Sun May  3 19:56:19 2015
@@ -17,65 +17,64 @@
  ! 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.woden</groupId>
-		<artifactId>woden</artifactId>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.woden</groupId>
+        <artifactId>woden</artifactId>
         <version>1.0-SNAPSHOT</version>
-		
-	</parent>
-	
-	<artifactId>woden-converter-maven-plugin</artifactId>
-	<name>Woden - converter Maven plugin</name>
-	<version>1.0-SNAPSHOT</version>
-	<packaging>maven-plugin</packaging>
-	
-	<build>
-		<resources>
-			<resource>
-				<directory>src/main/resources</directory>
-			</resource>
-			<resource>				
-				<directory>../</directory>
-				<includes>
-					<include>LICENSE</include>
-					<include>README</include>
-					<include>NOTICE</include>
-				</includes>
-			</resource>
-		</resources>
-		<plugins>
-			<plugin>
-				<artifactId>maven-plugin-plugin</artifactId>
-				<version>2.5</version>
-				<configuration>
-					<goalPrefix>woden</goalPrefix>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.codehaus.plexus</groupId>
-				<artifactId>plexus-maven-plugin</artifactId>
-				<executions>
-					<execution>
-						<goals>
-							<goal>descriptor</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>			
-		</plugins>
-	</build>
-	
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.woden</groupId>
-			<artifactId>woden-tool</artifactId>
-			<version>${project.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.maven</groupId>
-			<artifactId>maven-plugin-api</artifactId>
-			<version>2.0.3</version>
-		</dependency>		
-	</dependencies>
+    </parent>
+    
+    <artifactId>woden-converter-maven-plugin</artifactId>
+    <name>Woden - converter Maven plugin</name>
+    <version>1.0-SNAPSHOT</version>
+    <packaging>maven-plugin</packaging>
+    
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+            <resource>
+                <directory>../</directory>
+                <includes>
+                    <include>LICENSE</include>
+                    <include>README</include>
+                    <include>NOTICE</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <artifactId>maven-plugin-plugin</artifactId>
+                <version>2.5</version>
+                <configuration>
+                    <goalPrefix>woden</goalPrefix>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.plexus</groupId>
+                <artifactId>plexus-maven-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>descriptor</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.woden</groupId>
+            <artifactId>woden-tool</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.maven</groupId>
+            <artifactId>maven-plugin-api</artifactId>
+            <version>2.0.3</version>
+        </dependency>
+    </dependencies>
 </project>

Modified: webservices/woden/trunk/java/woden-core/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-core/pom.xml?rev=1677480&r1=1677479&r2=1677480&view=diff
==============================================================================
--- webservices/woden/trunk/java/woden-core/pom.xml (original)
+++ webservices/woden/trunk/java/woden-core/pom.xml Sun May  3 19:56:19 2015
@@ -17,40 +17,40 @@
  ! 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.woden</groupId>
-		<artifactId>woden</artifactId>
-		<version>1.0-SNAPSHOT</version>
-	</parent>
-	
-	<artifactId>woden-core</artifactId>
-	<name>Woden - Core</name>
-	<packaging>bundle</packaging>
-	
-	<build>
-		<resources>
-			<resource>
-				<targetPath>META-INF</targetPath>
-				<directory>../</directory>
-				<includes>
-					<include>LICENSE</include>
-					<include>README</include>
-					<include>NOTICE</include>
-				</includes>
-			</resource>
-			<resource>
-				<directory>src/main/resources</directory>
-			</resource>
-		</resources>
-		
-		<plugins>			
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-bundle-plugin</artifactId>
-				<version>${bundle.plugin.version}</version>
-				<extensions>true</extensions>
-				<configuration>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.woden</groupId>
+        <artifactId>woden</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+    
+    <artifactId>woden-core</artifactId>
+    <name>Woden - Core</name>
+    <packaging>bundle</packaging>
+    
+    <build>
+        <resources>
+            <resource>
+                <targetPath>META-INF</targetPath>
+                <directory>../</directory>
+                <includes>
+                    <include>LICENSE</include>
+                    <include>README</include>
+                    <include>NOTICE</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+        </resources>
+        
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>${bundle.plugin.version}</version>
+                <extensions>true</extensions>
+                <configuration>
                     <instructions>
                         <Implementation-Title>Apache Woden</Implementation-Title>
                         <Implementation-Vendor>The Apache Software Foundation</Implementation-Vendor>
@@ -62,61 +62,61 @@
                         <Private-Package>org.apache.woden.internal.*</Private-Package>
                         <Export-Package>!org.apache.woden.internal.*, org.apache.woden.*"</Export-Package>
                         <Import-Package>
-                              !org.apache.woden.*,
-                              org.apache.commons.logging.*;resolution:=optional,
-                              *
+                            !org.apache.woden.*,
+                            org.apache.commons.logging.*;resolution:=optional,
+                            *
                         </Import-Package>
-                        <_removeheaders>Ignore-Package, Private-Package, Include-Resource</_removeheaders>                         
+                        <_removeheaders>Ignore-Package, Private-Package, Include-Resource</_removeheaders>
                         <_nouses>true</_nouses>
                         <_nodefaultversion>true</_nodefaultversion>
                     </instructions>
-                </configuration>				
-			</plugin>		
-		</plugins>
-	</build>
-	<dependencies>
-		<dependency>
-			<groupId>org.apache.ws.xmlschema</groupId>
-			<artifactId>xmlschema-core</artifactId>
-			<version>${apache.xmlSchema.version}</version>
-		</dependency>
-		<!-- Logger dependencies -->
-		<dependency>
-			<groupId>commons-logging</groupId>
-			<artifactId>commons-logging</artifactId>
-			<version>${commons.logging.version}</version>
-		</dependency>
-		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-			<version>${lof4j.version}</version>
-			<scope>test</scope>
-			<exclusions>
-				<exclusion>
-					<groupId>javax.mail</groupId>
-					<artifactId>mail</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>javax.jms</groupId>
-					<artifactId>jms</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>com.sun.jdmk</groupId>
-					<artifactId>jmxtools</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>com.sun.jmx</groupId>
-					<artifactId>jmxri</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>oro</groupId>
-					<artifactId>oro</artifactId>
-				</exclusion>
-				<exclusion>
-					<groupId>junit</groupId>
-					<artifactId>junit</artifactId>
-				</exclusion>
-			</exclusions>
-		</dependency>
-	</dependencies>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.ws.xmlschema</groupId>
+            <artifactId>xmlschema-core</artifactId>
+            <version>${apache.xmlSchema.version}</version>
+        </dependency>
+        <!-- Logger dependencies -->
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>${commons.logging.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>${lof4j.version}</version>
+            <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.mail</groupId>
+                    <artifactId>mail</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>javax.jms</groupId>
+                    <artifactId>jms</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.sun.jdmk</groupId>
+                    <artifactId>jmxtools</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.sun.jmx</groupId>
+                    <artifactId>jmxri</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>oro</groupId>
+                    <artifactId>oro</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
 </project>

Modified: webservices/woden/trunk/java/woden-tests/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-tests/pom.xml?rev=1677480&r1=1677479&r2=1677480&view=diff
==============================================================================
--- webservices/woden/trunk/java/woden-tests/pom.xml (original)
+++ webservices/woden/trunk/java/woden-tests/pom.xml Sun May  3 19:56:19 2015
@@ -17,82 +17,82 @@
  ! 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.woden</groupId>
-       <artifactId>woden</artifactId>
-       <version>1.0-SNAPSHOT</version>
-   </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.woden</groupId>
+        <artifactId>woden</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
 
-   <artifactId>woden-tests</artifactId>
-   <name>Woden - Tests</name>
-   <packaging>jar</packaging>
- <build>
-     <directory>target/dom</directory>
-     <plugins>
-       <plugin>
-         <groupId>org.apache.maven.plugins</groupId>
-         <artifactId>maven-surefire-plugin</artifactId>
-         <configuration>
-         <!-- the DOM implementation does not support all tests. In order to be
-              more representative of the tests that fails, the failures will be
-              ignored and all tests will be run.
-              Note that this part is going to disappear as the OM implementation
-              will make progress
-          -->
-          <systemProperties>
-            <property>
-              <name>org.apache.woden.WSDLFactory</name>
-              <value>org.apache.woden.internal.DOMWSDLFactory</value>
-            </property>
-          </systemProperties>
-           <testFailureIgnore>false</testFailureIgnore>
-		   <excludes>
-			   <!-- W3C testsuite is run via /ant-test/build.xml and results
-				    are compared to W3C baseline -->
-			   <exclude>**/W3CTestSuiteTest.java</exclude>
-		   </excludes>		
-         </configuration>
-       </plugin>
-     </plugins>
-   </build>
-   <dependencies>
-     <dependency>
-       <groupId>org.apache.woden</groupId>
-       <artifactId>woden-core</artifactId>
-       <version>${project.version}</version>
-     </dependency>  
-	 <dependency>
-		<groupId>log4j</groupId>
-		<artifactId>log4j</artifactId>
-		<version>${lof4j.version}</version>
-		<scope>test</scope>
-		<exclusions>
-                    <exclusion>
-                        <groupId>javax.mail</groupId>
-                        <artifactId>mail</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>javax.jms</groupId>
-                        <artifactId>jms</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>com.sun.jdmk</groupId>
-                        <artifactId>jmxtools</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>com.sun.jmx</groupId>
-                        <artifactId>jmxri</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>oro</groupId>
-                        <artifactId>oro</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>junit</groupId>
-                        <artifactId>junit</artifactId>
-                    </exclusion>
-             </exclusions>
-	</dependency> 
-   </dependencies>  
+    <artifactId>woden-tests</artifactId>
+    <name>Woden - Tests</name>
+    <packaging>jar</packaging>
+    <build>
+        <directory>target/dom</directory>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <configuration>
+                    <!-- the DOM implementation does not support all tests. In order to be
+                         more representative of the tests that fails, the failures will be
+                         ignored and all tests will be run.
+                         Note that this part is going to disappear as the OM implementation
+                         will make progress
+                     -->
+                    <systemProperties>
+                        <property>
+                            <name>org.apache.woden.WSDLFactory</name>
+                            <value>org.apache.woden.internal.DOMWSDLFactory</value>
+                        </property>
+                    </systemProperties>
+                    <testFailureIgnore>false</testFailureIgnore>
+                    <excludes>
+                        <!-- W3C testsuite is run via /ant-test/build.xml and results
+                             are compared to W3C baseline -->
+                        <exclude>**/W3CTestSuiteTest.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.woden</groupId>
+            <artifactId>woden-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>${lof4j.version}</version>
+            <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.mail</groupId>
+                    <artifactId>mail</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>javax.jms</groupId>
+                    <artifactId>jms</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.sun.jdmk</groupId>
+                    <artifactId>jmxtools</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.sun.jmx</groupId>
+                    <artifactId>jmxri</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>oro</groupId>
+                    <artifactId>oro</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
 </project>

Modified: webservices/woden/trunk/java/woden-tool/pom.xml
URL: http://svn.apache.org/viewvc/webservices/woden/trunk/java/woden-tool/pom.xml?rev=1677480&r1=1677479&r2=1677480&view=diff
==============================================================================
--- webservices/woden/trunk/java/woden-tool/pom.xml (original)
+++ webservices/woden/trunk/java/woden-tool/pom.xml Sun May  3 19:56:19 2015
@@ -17,124 +17,123 @@
  ! 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.woden</groupId>
-       <artifactId>woden</artifactId>
-       <version>1.0-SNAPSHOT</version>
-   </parent>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.woden</groupId>
+        <artifactId>woden</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
 
-   <artifactId>woden-tool</artifactId>
-   <name>Woden - Tool</name>
-   
-   <build>
-       <resources>
-           <resource>
-               <targetPath>META-INF</targetPath>
-               <directory>../</directory>
-               <includes>
-                   <include>LICENSE</include>
-                   <include>README</include>
-                   <include>NOTICE</include>
-               </includes>
-           </resource>
-           <resource>
-             <directory>src/main/resources</directory>
-           </resource>
-       </resources>
+    <artifactId>woden-tool</artifactId>
+    <name>Woden - Tool</name>
 
-       <plugins>
-		   <plugin>
-				<artifactId>maven-jar-plugin</artifactId>
-				<configuration>
-					<archive>
-						<manifestFile>
-							${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
-					</archive>
-				</configuration>
-			</plugin>
-			<plugin>
-				<groupId>org.apache.felix</groupId>
-				<artifactId>maven-bundle-plugin</artifactId>
-				<version>${bundle.plugin.version}</version>
-				<configuration>
-					<instructions>
-						<Bundle-Version>${woden.osgi.version}</Bundle-Version>
-					</instructions>
-				</configuration>
-				<executions>
-					<execution>
-						<id>bundle-manifest</id>
-						<phase>process-classes</phase>
-						<goals>
-							<goal>manifest</goal>
-						</goals>
-					</execution>
-				</executions>
-			</plugin>		
-           <plugin>
-             <groupId>org.codehaus.mojo</groupId>
-             <artifactId>xslt-maven-plugin</artifactId>
-             <version>1.0</version>
-             <executions>
-               <execution>
-                 <goals>
-                   <goal>transform</goal>
-                 </goals>
-               </execution>
-             </executions>
-             <configuration>
-               <xslFile>all-in-one.xsl</xslFile>
-               <srcDir>src/main/xslt</srcDir>
-               <srcIncludes>**/wsdl-viewer-modules.xsl</srcIncludes>
-             </configuration>
-           </plugin>
-       </plugins>
-   </build>
+    <build>
+        <resources>
+            <resource>
+                <targetPath>META-INF</targetPath>
+                <directory>../</directory>
+                <includes>
+                    <include>LICENSE</include>
+                    <include>README</include>
+                    <include>NOTICE</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>src/main/resources</directory>
+            </resource>
+        </resources>
+
+        <plugins>
+            <plugin>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <version>${bundle.plugin.version}</version>
+                <configuration>
+                    <instructions>
+                        <Bundle-Version>${woden.osgi.version}</Bundle-Version>
+                    </instructions>
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>bundle-manifest</id>
+                        <phase>process-classes</phase>
+                        <goals>
+                            <goal>manifest</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>xslt-maven-plugin</artifactId>
+                <version>1.0</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>transform</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <xslFile>all-in-one.xsl</xslFile>
+                    <srcDir>src/main/xslt</srcDir>
+                    <srcIncludes>**/wsdl-viewer-modules.xsl</srcIncludes>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
   
-	<dependencies>
-		<dependency>
-			<groupId>wsdl4j</groupId>
-			<artifactId>wsdl4j</artifactId>
-			<version>${wsdl4j.version}</version>
-		</dependency>
-		<!-- Logger dependencies -->
-	   <dependency>
-		<groupId>commons-logging</groupId>
-		<artifactId>commons-logging</artifactId>
-		<version>${commons.logging.version}</version>
-	   </dependency>
-	   <dependency>
-		<groupId>log4j</groupId>
-		<artifactId>log4j</artifactId>
-		<version>${lof4j.version}</version>
-		<scope>test</scope>
-		<exclusions>
-                    <exclusion>
-                        <groupId>javax.mail</groupId>
-                        <artifactId>mail</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>javax.jms</groupId>
-                        <artifactId>jms</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>com.sun.jdmk</groupId>
-                        <artifactId>jmxtools</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>com.sun.jmx</groupId>
-                        <artifactId>jmxri</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>oro</groupId>
-                        <artifactId>oro</artifactId>
-                    </exclusion>
-                    <exclusion>
-                        <groupId>junit</groupId>
-                        <artifactId>junit</artifactId>
-                    </exclusion>
-             </exclusions>
-	</dependency> 
-  </dependencies>
+    <dependencies>
+        <dependency>
+            <groupId>wsdl4j</groupId>
+            <artifactId>wsdl4j</artifactId>
+            <version>${wsdl4j.version}</version>
+        </dependency>
+        <!-- Logger dependencies -->
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>${commons.logging.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>${lof4j.version}</version>
+            <scope>test</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>javax.mail</groupId>
+                    <artifactId>mail</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>javax.jms</groupId>
+                    <artifactId>jms</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.sun.jdmk</groupId>
+                    <artifactId>jmxtools</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>com.sun.jmx</groupId>
+                    <artifactId>jmxri</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>oro</groupId>
+                    <artifactId>oro</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>junit</groupId>
+                    <artifactId>junit</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
 </project>