Author: aadamchik
Date: Sun Jul 30 13:17:26 2006
New Revision: 426935

URL: http://svn.apache.org/viewvc?rev=426935&view=rev
Log:
formatting pom

Modified:
    incubator/cayenne/main/trunk/core/cayenne-jdk1.5-core/pom.xml

Modified: incubator/cayenne/main/trunk/core/cayenne-jdk1.5-core/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/core/cayenne-jdk1.5-core/pom.xml?rev=426935&r1=426934&r2=426935&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/core/cayenne-jdk1.5-core/pom.xml (original)
+++ incubator/cayenne/main/trunk/core/cayenne-jdk1.5-core/pom.xml Sun Jul 30 
13:17:26 2006
@@ -1,205 +1,204 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
-    Copyright 2006 The Apache Software Foundation
-
-    Licensed 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.
+       Copyright 2006 The Apache Software Foundation
+       
+       Licensed 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.
 -->
 
 <!-- $Rev$ $Date$ -->
 
-<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.cayenne.core</groupId>
-      <artifactId>cayenne-core-parent</artifactId>
-      <version>3.0-incubating-SNAPSHOT</version>
-    </parent>
-
-    <description>Cayenne Java 1.5 Core</description>
-    <artifactId>cayenne-jdk1.5-core</artifactId>
-    <name>Cayenne Java 1.5 Core</name>
-    <packaging>jar</packaging>
-
-    <dependencies>
-      
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>org.springframework</groupId>
-        <artifactId>spring-core</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>org.springframework</groupId>
-        <artifactId>spring-beans</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>com.caucho</groupId>
-        <artifactId>hessian</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>javax.servlet</groupId>
-        <artifactId>servlet-api</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>log4j</groupId>
-        <artifactId>log4j</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>jgroups</groupId>
-        <artifactId>jgroups-all</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>ant</groupId>
-        <artifactId>ant</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-collections</groupId>
-        <artifactId>commons-collections</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-lang</groupId>
-        <artifactId>commons-lang</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-logging</groupId>
-        <artifactId>commons-logging</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-dbcp</groupId>
-        <artifactId>commons-dbcp</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>commons-pool</groupId>
-        <artifactId>commons-pool</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>velocity</groupId>
-        <artifactId>velocity</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>org.objectstyle.ashwood</groupId>
-        <artifactId>ashwood</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>org.apache.geronimo.specs</groupId>
-        <artifactId>geronimo-jms_1.1_spec</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>jivesoftware</groupId>
-        <artifactId>smack</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>jivesoftware</groupId>
-        <artifactId>smackx</artifactId>
-      </dependency>
-
-      <dependency>
-       <groupId>foundrylogic.vpp</groupId>
-       <artifactId>vpp</artifactId>
-      </dependency>
-
-      <dependency>
-       <groupId>jdom</groupId>
-       <artifactId>jdom</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>mockrunner</groupId>
-        <artifactId>mockrunner</artifactId>
-      </dependency>
-
-      <dependency>
-        <groupId>org.apache.cayenne.core</groupId>
-        <artifactId>cayenne-jdk1.4-core</artifactId>
-       <version>${version}</version>
-      </dependency>
-
-    </dependencies>
-
-    <build>
-      <plugins>
-       <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-surefire-plugin</artifactId>
-          <configuration>
-            <includes>
-              <include>**/*Tst.java</include>
-            </includes>
-          </configuration>
-       </plugin>
-
-       <!-- plugin>
-         <groupId>org.apache.maven.plugins</groupId> 
-          <artifactId>maven-jar-plugin</artifactId> 
-          <executions> 
-            <execution> 
-              <id>bundle-test-jar</id> 
-              <phase>package</phase> 
-              <goals> 
-                <goal>test-jar</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>
-          </configuration>
-        </plugin>
-
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-source-plugin</artifactId>
-          <executions>
-            <execution>
-              <id>bundle-source-jar</id>
-              <phase>package</phase>
-              <goals>
-                <goal>jar</goal>
-              </goals>
-            </execution>
-          </executions>
-        </plugin>
+<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.cayenne.core</groupId>
+               <artifactId>cayenne-core-parent</artifactId>
+               <version>3.0-incubating-SNAPSHOT</version>
+       </parent>
+
+       <description>Cayenne Java 1.5 Core</description>
+       <artifactId>cayenne-jdk1.5-core</artifactId>
+       <name>Cayenne Java 1.5 Core</name>
+       <packaging>jar</packaging>
+
+       <dependencies>
+
+               <dependency>
+                       <groupId>junit</groupId>
+                       <artifactId>junit</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-core</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-beans</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>com.caucho</groupId>
+                       <artifactId>hessian</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>javax.servlet</groupId>
+                       <artifactId>servlet-api</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>log4j</groupId>
+                       <artifactId>log4j</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>jgroups</groupId>
+                       <artifactId>jgroups-all</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>ant</groupId>
+                       <artifactId>ant</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-collections</groupId>
+                       <artifactId>commons-collections</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-lang</groupId>
+                       <artifactId>commons-lang</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-logging</groupId>
+                       <artifactId>commons-logging</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-dbcp</groupId>
+                       <artifactId>commons-dbcp</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>commons-pool</groupId>
+                       <artifactId>commons-pool</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>velocity</groupId>
+                       <artifactId>velocity</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.objectstyle.ashwood</groupId>
+                       <artifactId>ashwood</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.apache.geronimo.specs</groupId>
+                       <artifactId>geronimo-jms_1.1_spec</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>jivesoftware</groupId>
+                       <artifactId>smack</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>jivesoftware</groupId>
+                       <artifactId>smackx</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>foundrylogic.vpp</groupId>
+                       <artifactId>vpp</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>jdom</groupId>
+                       <artifactId>jdom</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>mockrunner</groupId>
+                       <artifactId>mockrunner</artifactId>
+               </dependency>
+
+               <dependency>
+                       <groupId>org.apache.cayenne.core</groupId>
+                       <artifactId>cayenne-jdk1.4-core</artifactId>
+                       <version>${version}</version>
+               </dependency>
+
+       </dependencies>
+
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-surefire-plugin</artifactId>
+                               <configuration>
+                                       <includes>
+                                               <include>**/*Tst.java</include>
+                                       </includes>
+                               </configuration>
+                       </plugin>
+
+                       <!-- plugin>
+                               <groupId>org.apache.maven.plugins</groupId> 
+                               <artifactId>maven-jar-plugin</artifactId> 
+                               <executions> 
+                               <execution> 
+                               <id>bundle-test-jar</id> 
+                               <phase>package</phase> 
+                               <goals> 
+                               <goal>test-jar</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>
+                               </configuration>
+                       </plugin>
+
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-source-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>bundle-source-jar</id>
+                                               <phase>package</phase>
+                                               <goals>
+                                                       <goal>jar</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
 
-      </plugins>
-    </build>
+               </plugins>
+       </build>
 
 </project>


Reply via email to