You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2009/06/13 00:00:02 UTC

svn commit: r784288 [2/2] - in /geronimo/external/trunk/tomcat-parent-6.0.18: ./ catalina-ha/ catalina-ha/src/ catalina-ha/src/main/ catalina-ha/src/main/java/ catalina-ha/src/main/java/org/ catalina-ha/src/main/java/org/apache/ catalina-ha/src/main/ja...

Added: geronimo/external/trunk/tomcat-parent-6.0.18/jasper/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/jasper/pom.xml?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/jasper/pom.xml (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/jasper/pom.xml Fri Jun 12 21:59:44 2009
@@ -0,0 +1,85 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+--><!-- $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.geronimo.ext.tomcat</groupId>
+        <artifactId>tomcat-parent-6.0.18</artifactId>
+        <version>6.0.18-SNAPSHOT</version>
+    </parent>
+    <artifactId>jasper</artifactId>
+    <packaging>bundle</packaging>
+
+    <name>jasper</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-el_1.0_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-jsp_2.1_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.ext.tomcat</groupId>
+            <artifactId>juli</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.ext.tomcat</groupId>
+            <artifactId>shared</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.ant</groupId>
+            <artifactId>ant</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.eclipse.jdt</groupId>
+            <artifactId>core</artifactId>
+        </dependency>
+        <!--<dependency>-->
+            <!--<groupId>org.apache.geronimo.ext.tomcat</groupId>-->
+            <!--<artifactId>catalina</artifactId>-->
+        <!--</dependency>-->
+        <!--<dependency>-->
+            <!--<groupId>org.apache.geronimo.ext.tomcat</groupId>-->
+            <!--<artifactId>jasper-jdt</artifactId>-->
+        <!--</dependency>-->
+        <dependency>
+            <groupId>org.apache.geronimo.ext.tomcat</groupId>
+            <artifactId>jasper-el</artifactId>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions></instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/jasper/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/jasper/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/jasper/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/jasper/src/main/java/org/apache/jasper/
------------------------------------------------------------------------------
    svn:mergeinfo = /tomcat/trunk/java/org/apache/jasper:673796,673820

Added: geronimo/external/trunk/tomcat-parent-6.0.18/juli-adapters/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/juli-adapters/pom.xml?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/juli-adapters/pom.xml (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/juli-adapters/pom.xml Fri Jun 12 21:59:44 2009
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+
+<!-- $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</groupId>
+        <artifactId>tomcat-parent-6.0.18</artifactId>
+        <version>6.0.18-SNAPSHOT</version>
+    </parent>
+    <artifactId>juli-adapters</artifactId>
+    <packaging>bundle</packaging>
+
+    <name>juli-adapters</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>${groupId}</groupId>
+            <artifactId>juli</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions>
+                        <!--<Export-Package>javax.security.auth.message*;version=1.0</Export-Package>-->
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli-adapters/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli-adapters/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli-adapters/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/external/trunk/tomcat-parent-6.0.18/juli-extras/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/juli-extras/pom.xml?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/juli-extras/pom.xml (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/juli-extras/pom.xml Fri Jun 12 21:59:44 2009
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+
+<!-- $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</groupId>
+        <artifactId>tomcat-parent-6.0.18</artifactId>
+        <version>6.0.18-SNAPSHOT</version>
+    </parent>
+    <artifactId>juli-extras</artifactId>
+    <packaging>bundle</packaging>
+
+    <name>juli-extras</name>
+
+    <dependencies>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions>
+                        <!--<Export-Package>javax.security.auth.message*;version=1.0</Export-Package>-->
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli-extras/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli-extras/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli-extras/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/external/trunk/tomcat-parent-6.0.18/juli/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/juli/pom.xml?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/juli/pom.xml (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/juli/pom.xml Fri Jun 12 21:59:44 2009
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+--><!-- $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.geronimo.ext.tomcat</groupId>
+        <artifactId>tomcat-parent-6.0.18</artifactId>
+        <version>6.0.18-SNAPSHOT</version>
+    </parent>
+    <artifactId>juli</artifactId>
+    <packaging>bundle</packaging>
+
+    <name>juli</name>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions></instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/juli/src/main/java/org/apache/juli/
------------------------------------------------------------------------------
    svn:mergeinfo = /tomcat/trunk/java/org/apache/juli:673796,673820

Added: geronimo/external/trunk/tomcat-parent-6.0.18/mv-resource.sh
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/mv-resource.sh?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/mv-resource.sh (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/mv-resource.sh Fri Jun 12 21:59:44 2009
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# script to svn mv properties files from src/main/java to src/main/resources
+
+SRC=$1
+TARGET=`echo $SRC | sed s/java/resources/`
+
+svn mv --parents $SRC $TARGET
+

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/mv-resource.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/mv-resource.sh
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/mv-resource.sh
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Added: geronimo/external/trunk/tomcat-parent-6.0.18/mydos2unix.sh
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/mydos2unix.sh?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/mydos2unix.sh (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/mydos2unix.sh Fri Jun 12 21:59:44 2009
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+echo processing $1
+tr -d \\r <$1 > $1bak
+mv $1bak $1
+echo processed $1
\ No newline at end of file

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/mydos2unix.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/mydos2unix.sh
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/mydos2unix.sh
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Added: geronimo/external/trunk/tomcat-parent-6.0.18/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/pom.xml?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/pom.xml (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/pom.xml Fri Jun 12 21:59:44 2009
@@ -0,0 +1,175 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+--><!-- $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.geronimo.genesis</groupId>
+        <artifactId>genesis-java5-flava</artifactId>
+        <version>2.0</version>
+    </parent>
+
+    <groupId>org.apache.geronimo.ext.tomcat</groupId>
+    <artifactId>tomcat-parent-6.0.18</artifactId>
+    <version>6.0.18-SNAPSHOT</version>
+    <packaging>pom</packaging>
+
+    <name>tomcat-parent</name>
+    <description>Mavenized tomcat build</description>
+
+    <!-- instructions:
+    ./build-archetype.sh
+
+    To use archetype, if installed only locally,
+mvn archetype:generate -DarchetypeCatalog=local
+
+    -->
+
+    <scm>
+        <connection>scm:svn:https://svn.apache.org/repos/asf/geronimo/sandbox/djencks/tomcat-archetype/trunk/</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/geronimo/sandbox/djencks/tomcat-archetype/trunk/</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/geronimo/sandbox/djencks/tomcat-archetype/trunk/</url>
+    </scm>
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-annotation_1.0_spec</artifactId>
+                <version>1.1.1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-ejb_3.0_spec</artifactId>
+                <version>1.0.1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-el_1.0_spec</artifactId>
+                <version>1.0.1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-javamail_1.4_spec</artifactId>
+                <version>1.5</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-jpa_1.0_spec</artifactId>
+                <version>1.1.2-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-jsp_2.1_spec</artifactId>
+                <version>1.0.1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.specs</groupId>
+                <artifactId>geronimo-servlet_2.5_spec</artifactId>
+                <version>1.2</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.ant</groupId>
+                <artifactId>ant</artifactId>
+                <version>1.7.1</version>
+            </dependency>
+            <dependency>
+                <groupId>org.eclipse.jdt</groupId>
+                <artifactId>core</artifactId>
+                <version>3.2.3.v_686_R32x</version>
+            </dependency>
+            
+
+            <!-- internal -->
+
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>catalina</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>catalina-ha</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>coyote</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>jasper</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>jasper-el</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>jasper-jdt</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>juli</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>juli-adapters</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>juli-extras</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>shared</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>tribes</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.geronimo.ext.tomcat</groupId>
+                <artifactId>util</artifactId>
+                <version>6.0.18-SNAPSHOT</version>
+            </dependency>
+
+        </dependencies>
+    </dependencyManagement>
+  <modules>
+    <module>shared</module>
+    <module>juli</module>
+    <module>catalina</module>
+    <module>tribes</module>
+    <module>util</module>
+    <module>catalina-ha</module>
+    <module>jasper</module>
+    <module>jasper-el</module>
+  </modules>
+</project>
\ No newline at end of file

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: geronimo/external/trunk/tomcat-parent-6.0.18/run.sh
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/run.sh?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/run.sh (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/run.sh Fri Jun 12 21:59:44 2009
@@ -0,0 +1,36 @@
+#!/bin/sh
+
+# Included as an example of how to set up a project.  Needs to be copied to location you want to build the maven project.
+
+TVER=6.0.18
+GVER=${TVER}-SNAPSHOT
+
+svn rm --force tomcat-parent-${TVER}
+rm -rf tomcat-parent-${TVER}/
+mvn archetype:generate\
+ -DarchetypeCatalog=local\
+ -DinteractiveMode=false\
+ -DarchetypeGroupId=org.apache.geronimo.ext.tomcat\
+ -DarchetypeArtifactId=tomcat-parent-archetype\
+ -DarchetypeVersion=1.0-SNAPSHOT\
+ -DgroupId=org.apache.geronimo.ext.tomcat\
+ -DartifactId=tomcat-parent-${TVER}\
+ -Dversion=${GVER}\
+ -Dpackage=org.apache
+
+#mv tomcat-parent tomcat-parent-${TVER}
+
+cd tomcat-parent-${TVER}
+chmod u+x fixup.sh
+./fixup.sh
+cd ..
+svn add tomcat-parent-${TVER}
+cd tomcat-parent-${TVER}
+
+svn status
+
+./svn-actions.sh
+chmod u+x mv-resource.sh
+
+#mvn clean install
+

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/run.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/run.sh
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/run.sh
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Added: geronimo/external/trunk/tomcat-parent-6.0.18/shared/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/shared/pom.xml?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/shared/pom.xml (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/shared/pom.xml Fri Jun 12 21:59:44 2009
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+--><!-- $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.geronimo.ext.tomcat</groupId>
+        <artifactId>tomcat-parent-6.0.18</artifactId>
+        <version>6.0.18-SNAPSHOT</version>
+    </parent>
+    <artifactId>shared</artifactId>
+    <packaging>bundle</packaging>
+
+    <name>shared</name>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions></instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/shared/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/shared/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/shared/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/shared/src/main/java/org/apache/AnnotationProcessor.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/shared/src/main/java/org/apache/AnnotationProcessor.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/shared/src/main/java/org/apache/AnnotationProcessor.java
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Fri Jun 12 21:59:44 2009
@@ -0,0 +1 @@
+/tomcat/trunk/java/org/apache/AnnotationProcessor.java:673796,673820

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/shared/src/main/java/org/apache/PeriodicEventListener.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/shared/src/main/java/org/apache/PeriodicEventListener.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/shared/src/main/java/org/apache/PeriodicEventListener.java
------------------------------------------------------------------------------
--- svn:mergeinfo (added)
+++ svn:mergeinfo Fri Jun 12 21:59:44 2009
@@ -0,0 +1 @@
+/tomcat/trunk/java/org/apache/PeriodicEventListener.java:673796,673820

Added: geronimo/external/trunk/tomcat-parent-6.0.18/svn-actions.sh
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/svn-actions.sh?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/svn-actions.sh (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/svn-actions.sh Fri Jun 12 21:59:44 2009
@@ -0,0 +1,82 @@
+#!/bin/sh
+
+# Script to copy the tomcat source to the appropriate places in the mavenized project
+# Run after running the tomcat archetype.
+# Typically run from run.sh
+
+# Figure out if the framework is already in svn
+if [ -d .svn ]
+then
+  #yes, use svn copy to preserve history
+  SVN_CMD="svn cp --parents"
+  RM="svn rm"
+else
+  #no, use svn export to avoid polluting with svn crud
+  SVN_CMD="svn export"
+  RM="rm -rf"
+fi
+
+TOMCAT_TAG=TOMCAT_6_0_18
+
+TOMCAT_BASE="https://svn.apache.org/repos/asf/tomcat/tc6.0.x/tags"
+
+TOMCAT=$TOMCAT_BASE/$TOMCAT_TAG
+
+#catalina
+$SVN_CMD $TOMCAT/java/org/apache/catalina/ catalina/src/main/java/org/apache/catalina
+$SVN_CMD $TOMCAT/java/org/apache/naming/ catalina/src/main/java/org/apache/naming
+$RM catalina/src/main/java/org/apache/catalina/ant
+$RM catalina/src/main/java/org/apache/catalina/cluster
+$RM catalina/src/main/java/org/apache/catalina/ha
+$RM catalina/src/main/java/org/apache/catalina/tribes
+# does not exist?
+$RM catalina/src/main/java/org/apache/catalina/launcher
+# does not exist?
+$RM catalina/src/main/java/org/apache/catalina/storeconfig
+$RM catalina/src/main/java/org/apache/naming/factory/webservices
+#formerly coyote jar
+$SVN_CMD $TOMCAT/java/org/apache/coyote/ catalina/src/main/java/org/apache/coyote
+$SVN_CMD $TOMCAT/java/org/apache/tomcat/jni/ catalina/src/main/java/org/apache/tomcat/jni
+$SVN_CMD $TOMCAT/java/org/apache/jk/ catalina/src/main/java/org/apache/jk
+$SVN_CMD $TOMCAT/java/org/apache/tomcat/util/net/ catalina/src/main/java/org/apache/tomcat/util/net
+
+#catalina-ha
+$SVN_CMD $TOMCAT/java/org/apache/catalina/ha/ catalina-ha/src/main/java/org/apache/catalina/ha
+
+#coyote
+#$SVN_CMD $TOMCAT/java/org/apache/coyote/ coyote/src/main/java/org/apache/coyote
+#$SVN_CMD $TOMCAT/java/org/apache/tomcat/jni/ coyote/src/main/java/org/apache/tomcat/jni
+#$SVN_CMD $TOMCAT/java/org/apache/jk/ coyote/src/main/java/org/apache/jk
+#$SVN_CMD $TOMCAT/java/org/apache/tomcat/util/net/ coyote/src/main/java/org/apache/tomcat/util/net
+
+#jasper
+$SVN_CMD $TOMCAT/java/org/apache/jasper/ jasper/src/main/java/org/apache/jasper
+
+#jasper-el
+$SVN_CMD $TOMCAT/java/org/apache/el/ jasper-el/src/main/java/org/apache/el
+
+#jasper-jdt appears to be a shade
+
+#juli
+$SVN_CMD $TOMCAT/java/org/apache/juli/ juli/src/main/java/org/apache/juli
+
+
+
+#shared
+if [ -d .svn ]
+then
+  $SVN_CMD $TOMCAT/java/org/apache/AnnotationProcessor.java shared/src/main/java/org/apache
+  $SVN_CMD $TOMCAT/java/org/apache/PeriodicEventListener.java shared/src/main/java/org/apache
+else
+  $SVN_CMD -N $TOMCAT/java/org/apache/ shared/src/main/java/org/apache
+fi
+
+#tribes
+$SVN_CMD $TOMCAT/java/org/apache/catalina/tribes/ tribes/src/main/java/org/apache/catalina/tribes
+
+#util
+$SVN_CMD $TOMCAT/java/org/apache/tomcat/util/ util/src/main/java/org/apache/tomcat/util
+$RM util/src/main/java/org/apache/tomcat/util/net
+
+# move the properties files to src/main/resourcs
+find . -name *.properties |xargs -n1 ./mv-resource.sh

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/svn-actions.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/svn-actions.sh
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/svn-actions.sh
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Added: geronimo/external/trunk/tomcat-parent-6.0.18/tribes/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/tribes/pom.xml?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/tribes/pom.xml (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/tribes/pom.xml Fri Jun 12 21:59:44 2009
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+--><!-- $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.geronimo.ext.tomcat</groupId>
+        <artifactId>tomcat-parent-6.0.18</artifactId>
+        <version>6.0.18-SNAPSHOT</version>
+    </parent>
+    <artifactId>tribes</artifactId>
+    <packaging>bundle</packaging>
+
+    <name>tribes</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.ext.tomcat</groupId>
+            <artifactId>juli</artifactId>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions></instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/tribes/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/tribes/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/tribes/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/tribes/src/main/java/org/apache/catalina/tribes/
------------------------------------------------------------------------------
    svn:mergeinfo = /tomcat/trunk/java/org/apache/catalina/tribes:673796,673820

Added: geronimo/external/trunk/tomcat-parent-6.0.18/util/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/external/trunk/tomcat-parent-6.0.18/util/pom.xml?rev=784288&view=auto
==============================================================================
--- geronimo/external/trunk/tomcat-parent-6.0.18/util/pom.xml (added)
+++ geronimo/external/trunk/tomcat-parent-6.0.18/util/pom.xml Fri Jun 12 21:59:44 2009
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+--><!-- $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.geronimo.ext.tomcat</groupId>
+        <artifactId>tomcat-parent-6.0.18</artifactId>
+        <version>6.0.18-SNAPSHOT</version>
+    </parent>
+    <artifactId>util</artifactId>
+    <packaging>bundle</packaging>
+
+    <name>util</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.ext.tomcat</groupId>
+            <artifactId>juli</artifactId>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions></instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/util/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/util/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/util/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: geronimo/external/trunk/tomcat-parent-6.0.18/util/src/main/java/org/apache/tomcat/util/
------------------------------------------------------------------------------
    svn:mergeinfo = /tomcat/trunk/java/org/apache/tomcat/util:673796,673820