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/10 19:05:55 UTC

svn commit: r783429 - in /geronimo/sandbox/djencks/tomcat: ./ branches/ branches/tomcat-parent-6.0.18/ branches/tomcat-parent-6.0.18/build.sh branches/tomcat-parent-6.0.18/catalina/ branches/tomcat-parent-6.0.18/catalina/pom.xml

Author: djencks
Date: Wed Jun 10 17:05:54 2009
New Revision: 783429

URL: http://svn.apache.org/viewvc?rev=783429&view=rev
Log:
tomcat 6.0.18 mavenized based on archetype rev 783428

Added:
    geronimo/sandbox/djencks/tomcat/
    geronimo/sandbox/djencks/tomcat/branches/
    geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/
    geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/build.sh   (with props)
    geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/catalina/
    geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/catalina/pom.xml   (with props)

Added: geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/build.sh
URL: http://svn.apache.org/viewvc/geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/build.sh?rev=783429&view=auto
==============================================================================
--- geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/build.sh (added)
+++ geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/build.sh Wed Jun 10 17:05:54 2009
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+# build the archetype
+mvn clean archetype:create-from-project
+cd target/generated-sources/archetype/
+mvn install

Propchange: geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/build.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/build.sh
------------------------------------------------------------------------------
    svn:executable = *

Propchange: geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/build.sh
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Added: geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/catalina/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/catalina/pom.xml?rev=783429&view=auto
==============================================================================
--- geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/catalina/pom.xml (added)
+++ geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/catalina/pom.xml Wed Jun 10 17:05:54 2009
@@ -0,0 +1,83 @@
+<?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.test.tomcat</groupId>
+        <artifactId>tomcat-parent</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </parent>
+    <artifactId>catalina</artifactId>
+    <packaging>bundle</packaging>
+
+    <name>catalina</name>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-servlet_2.5_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-annotation_1.0_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-ejb_3.0_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-jpa_1.0_spec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-javamail_1.4_spec</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.geronimo.test.tomcat</groupId>
+            <artifactId>juli</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.test.tomcat</groupId>
+            <artifactId>shared</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.test.tomcat</groupId>
+            <artifactId>util</artifactId>
+        </dependency>
+        <!--<dependency>-->
+            <!--<groupId>org.apache.geronimo.test.tomcat</groupId>-->
+            <!--<artifactId>coyote</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/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/catalina/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/sandbox/djencks/tomcat/branches/tomcat-parent-6.0.18/catalina/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml