You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by bd...@apache.org on 2006/07/30 05:55:31 UTC

svn commit: r426861 - in /incubator/cayenne/main/trunk: ./ cayenne-jpa/ cayenne-regression-profiler/ cayenne/cayenne-java-1.5/ cayenne/cayenne-java/cayenne/ cayenne/cayenne-java/dvmodeler/ cayenne/cayenne-java/modeler/ core/ core/cayenne-jdk1.4-core/ c...

Author: bdudney
Date: Sat Jul 29 20:55:30 2006
New Revision: 426861

URL: http://svn.apache.org/viewvc?rev=426861&view=rev
Log:
directory movement to clean up where stuff lives

Added:
    incubator/cayenne/main/trunk/core/
    incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/
      - copied from r426858, incubator/cayenne/main/trunk/cayenne/cayenne-java/cayenne/
    incubator/cayenne/main/trunk/core/cayenne-jdk1.5-core/
      - copied from r426858, incubator/cayenne/main/trunk/cayenne/cayenne-java-1.5/
    incubator/cayenne/main/trunk/core/cayenne-jpa/
      - copied from r426858, incubator/cayenne/main/trunk/cayenne-jpa/
    incubator/cayenne/main/trunk/modeler/
    incubator/cayenne/main/trunk/modeler/dvmodeler/
      - copied from r426858, incubator/cayenne/main/trunk/cayenne/cayenne-java/dvmodeler/
    incubator/cayenne/main/trunk/modeler/modeler/
      - copied from r426858, incubator/cayenne/main/trunk/cayenne/cayenne-java/modeler/
    incubator/cayenne/main/trunk/other/
    incubator/cayenne/main/trunk/other/cayenne-regression-profiler/
      - copied from r426858, incubator/cayenne/main/trunk/cayenne-regression-profiler/
Removed:
    incubator/cayenne/main/trunk/cayenne-jpa/
    incubator/cayenne/main/trunk/cayenne-regression-profiler/
    incubator/cayenne/main/trunk/cayenne/cayenne-java-1.5/
    incubator/cayenne/main/trunk/cayenne/cayenne-java/cayenne/
    incubator/cayenne/main/trunk/cayenne/cayenne-java/dvmodeler/
    incubator/cayenne/main/trunk/cayenne/cayenne-java/modeler/
Modified:
    incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/pom.xml
    incubator/cayenne/main/trunk/core/cayenne-jdk1.5-core/pom.xml
    incubator/cayenne/main/trunk/core/cayenne-jpa/pom.xml
    incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml
    incubator/cayenne/main/trunk/modeler/modeler/pom.xml
    incubator/cayenne/main/trunk/pom.xml

Modified: incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/pom.xml?rev=426861&r1=426858&r2=426861&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/pom.xml (original)
+++ incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/pom.xml Sat Jul 29 20:55:30 2006
@@ -163,43 +163,52 @@
     <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-compiler-plugin</artifactId>
+            <configuration>
+              <source>1.4</source>
+              <target>1.4</target>
+            </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-surefire-plugin</artifactId>
+            <configuration>
+              <includes>
+                <include>**/*Tst.java</include>
+              </includes>
+            </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>
+          <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-source-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>bundle-source-jar</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>jar</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
 
         </plugins>
     </build>

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=426861&r1=426858&r2=426861&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 Sat Jul 29 20:55:30 2006
@@ -25,12 +25,12 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-      <groupId>org.apache.cayenne</groupId>
+      <groupId>org.apache.cayenne.core</groupId>
       <artifactId>cayenne-core-parent</artifactId>
       <version>3.0-incubating-SNAPSHOT</version>
     </parent>
 
-    <groupId>org.apache.cayenne.core</groupId>
+    <description>Cayenne Java 1.5 Core</description>
     <artifactId>cayenne-jdk1.5-core</artifactId>
     <name>Cayenne Java 1.5 Core</name>
     <packaging>jar</packaging>

Modified: incubator/cayenne/main/trunk/core/cayenne-jpa/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/core/cayenne-jpa/pom.xml?rev=426861&r1=426858&r2=426861&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/core/cayenne-jpa/pom.xml (original)
+++ incubator/cayenne/main/trunk/core/cayenne-jpa/pom.xml Sat Jul 29 20:55:30 2006
@@ -2,97 +2,30 @@
 	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>
+  <modelVersion>4.0.0</modelVersion>
 
     <parent>
-      <groupId>org.apache.cayenne</groupId>
-      <artifactId>cayenne-parent</artifactId>
+      <groupId>org.apache.cayenne.core</groupId>
+      <artifactId>cayenne-core-parent</artifactId>
       <version>3.0-incubating-SNAPSHOT</version>
     </parent>
 
+    <description>Cayenne JPA Implementation</description>
     <artifactId>cayenne-jpa</artifactId>
+    <name>Cayenne JPA Implementation</name>
     <packaging>jar</packaging>
 
-    <name>Cayenne JPA Implementation</name>
 
-    <url>http://incubator.apache.org/cayenne</url>
-    <organization>
-      <name>Apache Software Foundation (incubating)</name>
-    </organization>
-
-	<description>
-		This project is dedicated to making Cayenne a JPA provider.
-	</description>
-	<!-- developers>
-		<developer>
-			<id>andrus</id>
-			<name>Andrus Adamchik</name>
-			<email>andrus@objectstyle.org</email>
-			<organizationUrl>http://adamchik.org</organizationUrl>
-		</developer>
-		<developer>
-			<name>Cris Daniluk</name>
-		</developer>
-		<developer>
-			<name>Michael Gentry</name>
-		</developer>
-		<developer>
-			<name>Tore Halset</name>
-		</developer>
-		<developer>
-			<name>Mike Kienenberger</name>
-		</developer>
-		<developer>
-			<name>Kevin Menard</name>
-		</developer>
-	</developers>
-	<issueManagement>
-		<system>JIRA</system>
-		<url>
-			http://issues.apache.org/cayenne/secure/BrowseProject.jspa?id=10000
-		</url>
-	</issueManagement>
-	<scm>
-		<connection>
-			scm:svn:http://svn.apache.org/repos/asf/incubator/cayenne/
-		</connection>
-		<developerConnection>
-			scm:svn:https://username@svn.apache.org/repos/asf/incubator/cayenne/
-		</developerConnection>
-		<url>http://svn.apache.org/repos/asf/incubator/cayenne/</url>
-	</scm>
-	<repositories>
-		<repository>
-			<id>objectstyle</id>
-			<name>ObjectStyle Public Maven2 repo</name>
-			<url>http://objectstyle.org/maven2</url>
-		</repository>
-		<repository>
-            <id>apache-snapshots</id>
-            <name>Apache Snapshots Repository</name>
-            <url>http://people.apache.org/maven-snapshot-repository</url>
-            <layout>default</layout>
-            <snapshots>
-                <enabled>true</enabled>
-                <updatePolicy>daily</updatePolicy>
-                <checksumPolicy>ignore</checksumPolicy>
-            </snapshots>
-            <releases>
-                <enabled>false</enabled>
-            </releases>
-        </repository>
-	</repositories -->
-
-	<dependencies>
-		<dependency>
-			<groupId>junit</groupId>
-			<artifactId>junit</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-jpa_3.0_spec</artifactId>
-			<version>1.0-SNAPSHOT</version>
-		</dependency>
+    <dependencies>
+      <dependency>
+	<groupId>junit</groupId>
+	<artifactId>junit</artifactId>
+      </dependency>
+      <dependency>
+	<groupId>org.apache.geronimo.specs</groupId>
+	<artifactId>geronimo-jpa_3.0_spec</artifactId>
+	<version>1.0-SNAPSHOT</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.cayenne.core</groupId>
         <artifactId>cayenne-jdk1.4-core</artifactId>
@@ -104,142 +37,119 @@
 	<version>${version}</version>
       </dependency>
 
-		<!-- dependency>
-			<groupId>org.apache.cayenne</groupId>
-			<artifactId>cayenne-nodeps</artifactId>
-			<version>3.0-incubating-SNAPSHOT</version>
-		</dependency -->
-		<dependency>
-			<groupId>cglib</groupId>
-			<artifactId>cglib-nodep</artifactId>
-			<version>2.1_3</version>
-		</dependency>
-	</dependencies>
-
-
-	<distributionManagement>
-		<site>
-			<id>cayenne-website</id>
-			<name>Cayenne</name>
-			<url>file://${java.io.tmpdir}/foo</url>
-		</site>
-		<repository>
-			<id>local-maven2-repo</id>
-			<name>Local Maven 2 Cayenne Repository</name>
-			<url>file://${java.io.tmpdir}/cayenne-mvn-repo</url>
-		</repository>
-		<snapshotRepository>
-			<id>local-maven2-snapshot-repo</id>
-			<name>Local Maven 2 Snapshot Cayenne Repository</name>
-			<url>
-				file://${java.io.tmpdir}/cayenne-mvn-snapshot-repo
-			</url>
-		</snapshotRepository>
-	</distributionManagement>
+      <dependency>
+	<groupId>cglib</groupId>
+	<artifactId>cglib-nodep</artifactId>
+	<version>2.1_3</version>
+      </dependency>
+    </dependencies>
 
+    <!--TODO: This should be moved to the root pom soon -->
+    <distributionManagement>
+      <site>
+	<id>cayenne-website</id>
+	<name>Cayenne</name>
+	<url>file://${java.io.tmpdir}/foo</url>
+      </site>
+      <repository>
+	<id>local-maven2-repo</id>
+	<name>Local Maven 2 Cayenne Repository</name>
+	<url>file://${java.io.tmpdir}/cayenne-mvn-repo</url>
+      </repository>
+      <snapshotRepository>
+	<id>local-maven2-snapshot-repo</id>
+	<name>Local Maven 2 Snapshot Cayenne Repository</name>
+	<url>
+	  file://${java.io.tmpdir}/cayenne-mvn-snapshot-repo
+	</url>
+      </snapshotRepository>
+    </distributionManagement>
+
+    <build>
+      <plugins>
+	<plugin>
+	  <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-surefire-plugin</artifactId>
+          <configuration>
+            <includes>
+              <include>**/*Test.java</include>
+              <exclude>**/Test*.java</exclude>
+            </includes>
+          </configuration>
+        </plugin>
+
+	<plugin>
+	  <groupId>org.apache.maven.plugins</groupId>
+	  <artifactId>maven-jar-plugin</artifactId>
+	  <configuration>
+	    <archive>
+	      <manifestFile>
+		<!-- TODO: there is a way to make maven do the premain class -->
+		src/main/resources/META-INF/MANIFEST.MF
+	      </manifestFile>
+	    </archive>
+	  </configuration>
+	</plugin>
+
+        <plugin>
+	  <!-- TODO: should this be done here or at assembly? -->
+          <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>
+
+    <profiles>
+      <profile>
+	<id>generate-assembly</id>
 	<build>
-		<plugins>
-			<plugin>
-				<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-surefire-plugin</artifactId>
-                <configuration>
-                    <includes>
-                        <include>**/*Test.java</include>
-                        <exclude>**/Test*.java</exclude>
-                    </includes>
-                </configuration>
-            </plugin>
-
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-jar-plugin</artifactId>
-				<configuration>
-					<archive>
-						<manifestFile>
-							src/main/resources/META-INF/MANIFEST.MF
-						</manifestFile>
-					</archive>
-				</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>
 
-		</plugins>
+	    <plugin>
+	      <artifactId>maven-javadoc-plugin</artifactId>
+	      <executions>
+		<execution>
+		  <id>attach-javadoc</id>
+		  <goals>
+		    <goal>jar</goal>
+		  </goals>
+		</execution>
+	      </executions>
+	    </plugin>
+
+	    <plugin>
+	      <artifactId>maven-source-plugin</artifactId>
+	      <!-- TODO: should this be done here or every time? -->
+	      <executions>
+		<execution>
+		  <id>attach-source</id>
+		  <goals>
+		    <goal>jar</goal>
+		  </goals>
+		</execution>
+	      </executions>
+	    </plugin>
+	  </plugins>
 	</build>
-
-	<!--reporting>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>
-					maven-project-info-reports-plugin
-				</artifactId>
-				<reportSets>
-					<reportSet>
-						<reports>
-							<report>project-team</report>
-							<report>mailing-list</report>
-							<report>cim</report>
-							<report>issue-tracking</report>
-							<report>license</report>
-							<report>scm</report>
-							<report>javadoc</report>
-						</reports>
-					</reportSet>
-				</reportSets>
-			</plugin>
-		</plugins>
-	</reporting-->
-
-	<profiles>
-		<profile>
-			<id>generate-assembly</id>
-			<build>
-				<plugins>
-					<plugin>
-						<artifactId>maven-javadoc-plugin</artifactId>
-						<executions>
-							<execution>
-								<id>attach-javadoc</id>
-								<goals>
-									<goal>jar</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-					<plugin>
-						<artifactId>maven-source-plugin</artifactId>
-						<executions>
-							<execution>
-								<id>attach-source</id>
-								<goals>
-									<goal>jar</goal>
-								</goals>
-							</execution>
-						</executions>
-					</plugin>
-				</plugins>
-			</build>
-		</profile>
-	</profiles>
+      </profile>
+    </profiles>
 
 </project>

Modified: incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml?rev=426861&r1=426858&r2=426861&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml (original)
+++ incubator/cayenne/main/trunk/modeler/dvmodeler/pom.xml Sat Jul 29 20:55:30 2006
@@ -25,8 +25,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-      <groupId>org.apache.cayenne.core</groupId>
-      <artifactId>cayenne-core-parent</artifactId>
+      <groupId>org.apache.cayenne.modeler</groupId>
+      <artifactId>cayenne-modeler-parent</artifactId>
       <version>3.0-incubating-SNAPSHOT</version>
     </parent>
 

Modified: incubator/cayenne/main/trunk/modeler/modeler/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/modeler/modeler/pom.xml?rev=426861&r1=426858&r2=426861&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/modeler/modeler/pom.xml (original)
+++ incubator/cayenne/main/trunk/modeler/modeler/pom.xml Sat Jul 29 20:55:30 2006
@@ -25,8 +25,8 @@
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
-      <groupId>org.apache.cayenne.core</groupId>
-      <artifactId>cayenne-core-parent</artifactId>
+      <groupId>org.apache.cayenne.modeler</groupId>
+      <artifactId>cayenne-modeler-parent</artifactId>
       <version>3.0-incubating-SNAPSHOT</version>
     </parent>
 

Modified: incubator/cayenne/main/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/pom.xml?rev=426861&r1=426860&r2=426861&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/pom.xml (original)
+++ incubator/cayenne/main/trunk/pom.xml Sat Jul 29 20:55:30 2006
@@ -6,477 +6,518 @@
     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
+    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">
+   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>
+
+  <groupId>org.apache.cayenne</groupId>
+  <artifactId>cayenne-parent</artifactId>
+  <version>3.0-incubating-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>Cayenne</name>
+
+  <description>Apache Cayenne is a powerful, full-featured Java Object Relational Mapping framework currently in incubation.</description>
+  
+  <url>http://incubator.apache.org/cayenne</url>
+
+  <modules>
+    <module>core</module>
+    <module>modeler</module>
+    <module>other</module>
+  </modules>
+
+  <issueManagement>
+    <system>jira</system>
+    <url>http://issues.apache.org/cayenne/browse/CAY</url>
+  </issueManagement>
+
+  <ciManagement>
+    <system>continuum</system>
+    <notifiers>
+      <notifier>
+        <type>mail</type>
+        <sendOnError/>
+        <sendOnFailure/>
+        <address>cayenne-dev@incubator.apache.org</address>
+      </notifier>
+    </notifiers>
+  </ciManagement>
+
+  <inceptionYear>2002</inceptionYear>
+  
+  <mailingLists>
+    <mailingList>
+      <name>Cayenne User List</name>
+      <post>cayenne-user@incubator.apache.org</post>
+      <subscribe>cayenne-user-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>cayenne-user-unsubscribe@incubator.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/incubator-cayenne-user</archive>
+      <otherArchives>
+        <otherArchive>http://objectstyle.org/cayenne/lists/cayenne-user</otherArchive>
+      </otherArchives>
+    </mailingList>
     
-    <modelVersion>4.0.0</modelVersion>
-
-    <groupId>org.apache.cayenne</groupId>
-    <artifactId>cayenne-parent</artifactId>
-    <version>3.0-incubating-SNAPSHOT</version>
-    <packaging>pom</packaging>
-    <name>Cayenne</name>
-    <description>Apache Cayenne is a powerful, full-featured Java Object Relational Mapping framework currently in incubation.</description>
+    <mailingList>
+      <name>Cayenne Developer List</name>
+      <post>cayenne-dev@incubator.apache.org</post>
+      <subscribe>cayenne-dev-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>cayenne-dev-unsubscribe@incubator.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/incubator-cayenne-dev</archive>
+      <otherArchives>
+        <otherArchive>http://objectstyle.org/cayenne/lists/cayenne-devel</otherArchive>
+      </otherArchives>
+    </mailingList>
     
-    <url>http://incubator.apache.org/cayenne</url>
+    <mailingList>
+      <name>Cayenne Commits</name>
+      <subscribe>cayenne-commits-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>cayenne-commits-unsubscribe@incubator.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/incubator-cayenne-commits</archive>
+    </mailingList>
+  </mailingLists>
+
+  <developers>
+    <developer>
+      <id>andrus</id>
+      <name>Andrus Adamchik</name>
+      <email>andrus@objectstyle.org</email>
+      <organization>ObjectStyle</organization>
+      <roles>
+        <role>Lead Developer</role>
+      </roles>
+      <timezone>-5</timezone>
+    </developer>
+    <developer>
+      <id>bdudney</id>
+      <name>Bill Dudney</name>
+      <email>bdudney@apache.org</email>
+      <organization>Virtuas</organization>
+      <roles>
+        <role>Incubation Mentor</role>
+        <role>Developer</role>
+      </roles>
+      <timezone>-7</timezone>
+    </developer>
+    <developer>
+      <name>Cris Daniluk</name>
+    </developer>
+    <developer>
+      <name>Michael Gentry</name>
+    </developer>
+    <developer>
+      <name>Tore Halset</name>
+    </developer>
+    <developer>
+      <name>Mike Kienenberger</name>
+    </developer>
+    <developer>
+      <name>Kevin Menard</name>
+    </developer>
+  </developers>
+
+  <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <url>scp://people.apache.org/www/incubator.apache.org/cayenne</url>
+    </site>
+  </distributionManagement>
+
+  <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>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/cayenne/main/trunk/cayenne</connection>
+    <developerConnection>scm:svn:https://@svn.apache.org/repos/asf/incubator/cayenne/main/trunk/cayenne</developerConnection>
+    <url>http://svn.apache.org/viewvc/incubator/cayenne/main/trunk</url>
+  </scm>
 
-    <modules>
-      <module>cayenne</module>
-      <module>cayenne-jpa</module>
-      <module>cayenne-regression-profiler</module>
-    </modules>
-
-    <issueManagement>
-        <system>jira</system>
-        <url>http://issues.apache.org/cayenne/browse/CAY</url>
-    </issueManagement>
-
-    <ciManagement>
-        <system>continuum</system>
-        <notifiers>
-            <notifier>
-                <type>mail</type>
-                <sendOnError/>
-                <sendOnFailure/>
-                <address>cayenne-dev@incubator.apache.org</address>
-            </notifier>
-        </notifiers>
-    </ciManagement>
+  <organization>
+    <name>Apache Cayenne</name>
+    <url>http://incubator.apache.org/cayenne</url>
+  </organization>
 
-    <inceptionYear>2002</inceptionYear>
-    
-    <mailingLists>
-        <mailingList>
-            <name>Cayenne User List</name>
-	    <post>cayenne-user@incubator.apache.org</post>
-            <subscribe>cayenne-user-subscribe@incubator.apache.org</subscribe>
-            <unsubscribe>cayenne-user-unsubscribe@incubator.apache.org</unsubscribe>
-            <archive>http://mail-archives.apache.org/mod_mbox/incubator-cayenne-user</archive>
-	    <otherArchives>
-              <otherArchive>http://objectstyle.org/cayenne/lists/cayenne-user</otherArchive>
-	    </otherArchives>
-        </mailingList>
-        
-        <mailingList>
-            <name>Cayenne Developer List</name>
-	    <post>cayenne-dev@incubator.apache.org</post>
-            <subscribe>cayenne-dev-subscribe@incubator.apache.org</subscribe>
-            <unsubscribe>cayenne-dev-unsubscribe@incubator.apache.org</unsubscribe>
-            <archive>http://mail-archives.apache.org/mod_mbox/incubator-cayenne-dev</archive>
-	    <otherArchives>
-              <otherArchive>http://objectstyle.org/cayenne/lists/cayenne-devel</otherArchive>
-	    </otherArchives>
-        </mailingList>
-        
-        <mailingList>
-            <name>Cayenne Commits</name>
-            <subscribe>cayenne-commits-subscribe@incubator.apache.org</subscribe>
-            <unsubscribe>cayenne-commits-unsubscribe@incubator.apache.org</unsubscribe>
-            <archive>http://mail-archives.apache.org/mod_mbox/incubator-cayenne-commits</archive>
-        </mailingList>
-    </mailingLists>
-
-    <developers>
-      <developer>
-	<id>andrus</id>
-	<name>Andrus Adamchik</name>
-	<email>andrus@objectstyle.org</email>
-	<organization>ObjectStyle</organization>
-	<roles>
-          <role>Lead Developer</role>
-	</roles>
-	<timezone>-5</timezone>
-      </developer>
-      <developer>
-	<id>bdudney</id>
-	<name>Bill Dudney</name>
-	<email>bdudney@apache.org</email>
-	<organization>Virtuas</organization>
-	<roles>
-          <role>Incubation Mentor</role>
-          <role>Developer</role>
-	</roles>
-	<timezone>-7</timezone>
-      </developer>
-    </developers>
-
-    <distributionManagement>
-      <site>
-	<id>apache.website</id>
-	<url>scp://people.apache.org/www/incubator.apache.org/cayenne</url>
-      </site>
-    </distributionManagement>
-
-    <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>
-
-    <scm>
-        <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/cayenne/main/trunk/cayenne</connection>
-        <developerConnection>scm:svn:https://@svn.apache.org/repos/asf/incubator/cayenne/main/trunk/cayenne</developerConnection>
-        <url>http://svn.apache.org/viewvc/incubator/cayenne/main/trunk</url>
-    </scm>
-
-    <organization>
-        <name>Apache Cayenne</name>
-        <url>http://incubator.apache.org/cayenne</url>
-    </organization>
-
-    <dependencyManagement>
-        <dependencies>
-
-            <dependency>
-<!-- is and really a dependency or is the jar here for building -->
-                <groupId>ant</groupId>
-                <artifactId>ant</artifactId>
-                <version>1.6.5</version>
-            </dependency>
-
-            <dependency>
-                <groupId>ant</groupId>
-                <artifactId>ant-junit</artifactId>
-                <version>1.6.5</version>
-            </dependency>
-
-            <dependency>
-                <groupId>org.objectstyle.ashwood</groupId>
-                <artifactId>ashwood</artifactId>
-                <version>1.1</version>
-            </dependency>
-
-            <dependency>
-                <groupId>bcel</groupId>
-                <artifactId>bcel</artifactId>
-                <version>5.1</version>
-            </dependency>
-
-            <dependency>
-                <groupId>commons-collections</groupId>
-                <artifactId>commons-collections</artifactId>
-                <version>3.1</version>
-            </dependency>
-
-            <dependency>
-                <groupId>commons-lang</groupId>
-                <artifactId>commons-lang</artifactId>
-                <version>2.1</version>
-            </dependency>
-
-            <dependency>
-                <groupId>commons-logging</groupId>
-                <artifactId>commons-logging</artifactId>
-                <version>1.0.4</version>
-            </dependency>
-
-            <dependency>
-                <groupId>commons-dbcp</groupId>
-                <artifactId>commons-dbcp</artifactId>
-                <version>1.2.1</version>
-            </dependency>
-
-            <dependency>
-                <groupId>commons-pool</groupId>
-                <artifactId>commons-pool</artifactId>
-                <version>1.2</version>
-            </dependency>
-
-            <dependency>
-                <groupId>emma</groupId>
-                <artifactId>emma</artifactId>
-                <version>2.0.5312</version>
-            </dependency>
-
-            <dependency>
-                <groupId>hsqldb</groupId>
-                <artifactId>hsqldb</artifactId>
-                <version>1.8.0.4</version>
-            </dependency>
-
-            <dependency>
-                <groupId>com.caucho</groupId>
-                <artifactId>hessian</artifactId>
-                <version>3.0.13</version>
-            </dependency>
-
-            <dependency>
-                <groupId>javacc</groupId>
-                <artifactId>javacc</artifactId>
-                <version>3.2</version>
-            </dependency>
-
-            <dependency>
-                <groupId>jdom</groupId>
-                <artifactId>jdom</artifactId>
-                <version>1.0</version>
-            </dependency>
-
-            <dependency>
-                <groupId>jgoodies</groupId>
-                <artifactId>forms</artifactId>
-                <version>1.0.5</version>
-            </dependency>
-
-            <dependency>
-                <groupId>jgoodies</groupId>
-                <artifactId>looks</artifactId>
-		<!-- TODO: 1.2.2 is avalibe out in the wild -->
-                <version>1.3.1</version> 
-            </dependency>
-
-            <dependency>
-                <groupId>jgroups</groupId>
-                <artifactId>jgroups-all</artifactId>
-		<version>2.2.7</version>
-            </dependency>
-
-            <dependency>
-                <groupId>org.apache.geronimo.specs</groupId>
-                <artifactId>geronimo-jms_1.1_spec</artifactId>
-                <version>1.0.1</version>
-            </dependency>
-
-            <dependency>
-                <groupId>log4j</groupId>
-                <artifactId>log4j</artifactId>
-                <version>1.2.8</version>
-            </dependency>
-
-            <dependency>
-                <groupId>mockrunner</groupId>
-                <artifactId>mockrunner</artifactId>
-                <version>0.3.7</version>
-            </dependency>
-
-            <dependency>
-                <groupId>ognl</groupId>
-                <artifactId>ognl</artifactId>
-                <version>2.6.7</version>
-            </dependency>
-            
-            <dependency>
-                <groupId>opensymphony</groupId>
-                <artifactId>oscache</artifactId>
-                <version>2.3.2</version>
-            </dependency>
-
-            <dependency>
-                <groupId>org.scopemvc</groupId>
-                <artifactId>scopemvc</artifactId>
-                <version>1.0.1</version>
-            </dependency>
-
-            <dependency>
-                <groupId>javax.servlet</groupId>
-                <artifactId>servlet-api</artifactId>
-                <version>2.4</version>
-		<scope>provided</scope>
-            </dependency>
-
-            <dependency>
-                <groupId>oro</groupId>
-                <artifactId>oro</artifactId>
-                <version>2.0.8</version>
-            </dependency>
-
-            <dependency>
-                <groupId>jivesoftware</groupId>
-                <artifactId>smack</artifactId>
-                <version>2.0.0</version>
-            </dependency>
-
-            <dependency>
-                <groupId>jivesoftware</groupId>
-                <artifactId>smackx</artifactId>
-                <version>2.0.0</version>
-            </dependency>
-
-            <dependency>
-                <groupId>org.springframework</groupId>
-                <artifactId>spring-core</artifactId>
-                <version>1.2.6</version>
-            </dependency>
-
-            <dependency>
-                <groupId>org.springframework</groupId>
-                <artifactId>spring-beans</artifactId>
-                <version>1.2.6</version>
-            </dependency>
-
-            <dependency>
-                <groupId>velocity</groupId>
-                <artifactId>velocity</artifactId>
-                <version>1.3</version>
-            </dependency>
-
-	    <dependency>
-	      <groupId>foundrylogic.vpp</groupId>
-	      <artifactId>vpp</artifactId>
-	      <version>2.2.1</version>
-	    </dependency>
-	    
-	    <dependency>
-              <groupId>junit</groupId>
-              <artifactId>junit</artifactId>
-	      <version>3.8.1</version>
-              <scope>test</scope>
-            </dependency>
-	</dependencies>
-    </dependencyManagement>
-
-    <repositories>
-        <repository>
-            <id>objectstyle</id>
-            <name>ObjectStyle Public Maven2 repo</name>
-            <url>http://objectstyle.org/maven2</url>
-            <layout>default</layout>
-            <snapshots>
-                <enabled>true</enabled>
-                <updatePolicy>daily</updatePolicy>
-            </snapshots>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </repository>
-        
-        <repository>
-            <id>apache-m1</id>
-            <name>Apache Maven 1 Repository</name>
-            <url>http://people.apache.org/repository</url>
-            <layout>legacy</layout>
-            <snapshots>
-                <enabled>true</enabled>
-                <updatePolicy>daily</updatePolicy>
-                <checksumPolicy>ignore</checksumPolicy>
-            </snapshots>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </repository>
-        
-        <repository>
-            <id>apache-snapshots</id>
-            <name>Apache Snapshots Repository</name>
-            <url>http://people.apache.org/maven-snapshot-repository</url>
-            <layout>default</layout>
-            <snapshots>
-                <enabled>true</enabled>
-                <updatePolicy>daily</updatePolicy>
-                <checksumPolicy>ignore</checksumPolicy>
-            </snapshots>
-            <releases>
-                <enabled>false</enabled>
-            </releases>
-        </repository>
-    </repositories>
-        
-    <pluginRepositories>
-        <pluginRepository>
-            <id>mergere</id>
-            <name>Mergere Repository</name>
-            <url>http://repo.mergere.com/maven2</url>
-            <layout>default</layout>
-            <snapshots>
-                <enabled>true</enabled>
-                <updatePolicy>daily</updatePolicy>
-                <checksumPolicy>ignore</checksumPolicy>
-            </snapshots>
-            <releases>
-                <enabled>true</enabled>
-            </releases>
-        </pluginRepository>
+  <dependencyManagement>
+    <dependencies>
 
-    </pluginRepositories>
+      <dependency>
+	<!-- is and really a dependency or is the jar here for building -->
+        <groupId>ant</groupId>
+        <artifactId>ant</artifactId>
+        <version>1.6.5</version>
+      </dependency>
+
+      <dependency>
+        <groupId>ant</groupId>
+        <artifactId>ant-junit</artifactId>
+        <version>1.6.5</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.objectstyle.ashwood</groupId>
+        <artifactId>ashwood</artifactId>
+        <version>1.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>bcel</groupId>
+        <artifactId>bcel</artifactId>
+        <version>5.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>commons-collections</groupId>
+        <artifactId>commons-collections</artifactId>
+        <version>3.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>commons-lang</groupId>
+        <artifactId>commons-lang</artifactId>
+        <version>2.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>1.0.4</version>
+      </dependency>
+
+      <dependency>
+        <groupId>commons-dbcp</groupId>
+        <artifactId>commons-dbcp</artifactId>
+        <version>1.2.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>commons-pool</groupId>
+        <artifactId>commons-pool</artifactId>
+        <version>1.2</version>
+      </dependency>
+
+      <dependency>
+        <groupId>emma</groupId>
+        <artifactId>emma</artifactId>
+        <version>2.0.5312</version>
+      </dependency>
+
+      <dependency>
+        <groupId>hsqldb</groupId>
+        <artifactId>hsqldb</artifactId>
+        <version>1.8.0.4</version>
+      </dependency>
+
+      <dependency>
+        <groupId>com.caucho</groupId>
+        <artifactId>hessian</artifactId>
+        <version>3.0.13</version>
+      </dependency>
+
+      <dependency>
+        <groupId>javacc</groupId>
+        <artifactId>javacc</artifactId>
+        <version>3.2</version>
+      </dependency>
+
+      <dependency>
+        <groupId>jdom</groupId>
+        <artifactId>jdom</artifactId>
+        <version>1.0</version>
+      </dependency>
+
+      <dependency>
+        <groupId>jgoodies</groupId>
+        <artifactId>forms</artifactId>
+        <version>1.0.5</version>
+      </dependency>
+
+      <dependency>
+        <groupId>jgoodies</groupId>
+        <artifactId>looks</artifactId>
+	<!-- TODO: 1.2.2 is avalibe out in the wild -->
+        <version>1.3.1</version> 
+      </dependency>
+
+      <dependency>
+        <groupId>jgroups</groupId>
+        <artifactId>jgroups-all</artifactId>
+	<version>2.2.7</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.apache.geronimo.specs</groupId>
+        <artifactId>geronimo-jms_1.1_spec</artifactId>
+        <version>1.0.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+        <version>1.2.8</version>
+      </dependency>
+
+      <dependency>
+        <groupId>mockrunner</groupId>
+        <artifactId>mockrunner</artifactId>
+        <version>0.3.7</version>
+      </dependency>
+
+      <dependency>
+        <groupId>ognl</groupId>
+        <artifactId>ognl</artifactId>
+        <version>2.6.7</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>opensymphony</groupId>
+        <artifactId>oscache</artifactId>
+        <version>2.3.2</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.scopemvc</groupId>
+        <artifactId>scopemvc</artifactId>
+        <version>1.0.1</version>
+      </dependency>
+
+      <dependency>
+        <groupId>javax.servlet</groupId>
+        <artifactId>servlet-api</artifactId>
+        <version>2.4</version>
+	<scope>provided</scope>
+      </dependency>
+
+      <dependency>
+        <groupId>oro</groupId>
+        <artifactId>oro</artifactId>
+        <version>2.0.8</version>
+      </dependency>
+
+      <dependency>
+        <groupId>jivesoftware</groupId>
+        <artifactId>smack</artifactId>
+        <version>2.0.0</version>
+      </dependency>
+
+      <dependency>
+        <groupId>jivesoftware</groupId>
+        <artifactId>smackx</artifactId>
+        <version>2.0.0</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.springframework</groupId>
+        <artifactId>spring-core</artifactId>
+        <version>1.2.6</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.springframework</groupId>
+        <artifactId>spring-beans</artifactId>
+        <version>1.2.6</version>
+      </dependency>
+
+      <dependency>
+        <groupId>velocity</groupId>
+        <artifactId>velocity</artifactId>
+        <version>1.3</version>
+      </dependency>
+
+      <dependency>
+	<groupId>foundrylogic.vpp</groupId>
+	<artifactId>vpp</artifactId>
+	<version>2.2.1</version>
+      </dependency>
+      
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+	<version>3.8.1</version>
+        <scope>test</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <repositories>
+    <repository>
+      <id>objectstyle</id>
+      <name>ObjectStyle Public Maven2 repo</name>
+      <url>http://objectstyle.org/maven2</url>
+      <layout>default</layout>
+      <snapshots>
+        <enabled>true</enabled>
+        <updatePolicy>daily</updatePolicy>
+      </snapshots>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+    </repository>
     
-    <build>
-        <defaultGoal>install</defaultGoal>
-    </build>
-
-    <!-- FIXME -->
-    <!-- distributionManagement>
-        <repository>
-            <id>apache-repo</id>
-            <name>Apache CVS Repository</name>
-            <url>scpexe://cvs.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
-        </repository>
-
-        <snapshotRepository>
-            <id>apache-snapshots</id>
-            <name>Apache CVS Development Repository</name>
-            <url>scpexe://cvs.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
-        </snapshotRepository>
-
-        <site>
-            <id>geronimo-website</id>
-            <url>scpexe://people.apache.org/www/geronimo.apache.org/maven/</url>
-        </site>
-    </distributionManagement -->
+    <repository>
+      <id>apache-m1</id>
+      <name>Apache Maven 1 Repository</name>
+      <url>http://people.apache.org/repository</url>
+      <layout>legacy</layout>
+      <snapshots>
+        <enabled>true</enabled>
+        <updatePolicy>daily</updatePolicy>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+    </repository>
     
-    <reporting>
-      <plugins>
-	<plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-surefire-report-plugin</artifactId>
-	</plugin>
-	<plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-checkstyle-plugin</artifactId>
-	</plugin>
-	<plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-pmd-plugin</artifactId>
-	</plugin>
-	<plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>cobertura-maven-plugin</artifactId>
-	</plugin>
-	<plugin>
-          <groupId>org.codehaus.mojo</groupId>
-          <artifactId>taglist-maven-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>
-          <configuration>
-	    <showProtected>true</showProtected>
-	    <showPackage>false</showPackage>
-            <links>
-              <link>http://java.sun.com/j2ee/1.4/docs/api</link>
-              <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
-              <link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link>
-              <link>http://jakarta.apache.org/commons/dbcp/apidocs/</link>
-              <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
-              <link>http://jakarta.apache.org/commons/httpclient/apidocs/</link>
-              <link>http://jakarta.apache.org/commons/logging/api/</link>
-              <link>http://jakarta.apache.org/commons/pool/apidocs/</link>
-              <link>http://www.junit.org/junit/javadoc/</link>
-              <link>http://logging.apache.org/log4j/docs/api/</link>
-              <link>http://jakarta.apache.org/regexp/apidocs/</link>
-            </links>
-          </configuration>
-	</plugin>
-      </plugins>
-    </reporting>
+    <repository>
+      <id>apache-snapshots</id>
+      <name>Apache Snapshots Repository</name>
+      <url>http://people.apache.org/maven-snapshot-repository</url>
+      <layout>default</layout>
+      <snapshots>
+        <enabled>true</enabled>
+        <updatePolicy>daily</updatePolicy>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+    </repository>
+  </repositories>
+  
+  <pluginRepositories>
+    <pluginRepository>
+      <id>mergere</id>
+      <name>Mergere Repository</name>
+      <url>http://repo.mergere.com/maven2</url>
+      <layout>default</layout>
+      <snapshots>
+        <enabled>true</enabled>
+        <updatePolicy>daily</updatePolicy>
+        <checksumPolicy>ignore</checksumPolicy>
+      </snapshots>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+    </pluginRepository>
+
+  </pluginRepositories>
+  
+  <build>
+    <defaultGoal>install</defaultGoal>
+  </build>
+
+  <!-- FIXME -->
+  <!-- distributionManagement>
+       <repository>
+         <id>apache-repo</id>
+         <name>Apache CVS Repository</name>
+         <url>scpexe://cvs.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
+       </repository>
+
+       <snapshotRepository>
+         <id>apache-snapshots</id>
+         <name>Apache CVS Development Repository</name>
+         <url>scpexe://cvs.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
+       </snapshotRepository>
+
+       <site>
+         <id>geronimo-website</id>
+         <url>scpexe://people.apache.org/www/geronimo.apache.org/maven/</url>
+       </site>
+  </distributionManagement -->
+  
+  <reporting>
+    <plugins>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-pmd-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+      </plugin>
+      
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-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>
+        <configuration>
+	  <showProtected>true</showProtected>
+	  <showPackage>false</showPackage>
+          <links>
+            <link>http://java.sun.com/j2ee/1.4/docs/api</link>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
+            <link>http://jakarta.apache.org/commons/collections/apidocs-COLLECTIONS_3_0/</link>
+            <link>http://jakarta.apache.org/commons/dbcp/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/fileupload/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/httpclient/apidocs/</link>
+            <link>http://jakarta.apache.org/commons/logging/api/</link>
+            <link>http://jakarta.apache.org/commons/pool/apidocs/</link>
+            <link>http://www.junit.org/junit/javadoc/</link>
+            <link>http://logging.apache.org/log4j/docs/api/</link>
+            <link>http://jakarta.apache.org/regexp/apidocs/</link>
+          </links>
+        </configuration>
+      </plugin>
+
+      <plugin>
+	<groupId>org.apache.maven.plugins</groupId>
+	<artifactId>maven-project-info-reports-plugin</artifactId>
+	<reportSets>
+	  <reportSet>
+	    <reports>
+	      <report>project-team</report>
+	      <report>mailing-list</report>
+	      <report>cim</report>
+	      <report>issue-tracking</report>
+	      <report>license</report>
+	      <report>scm</report>
+	      <report>javadoc</report>
+	    </reports>
+	  </reportSet>
+	</reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
 
 </project>