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/12/25 00:05:56 UTC

svn commit: r893819 - in /geronimo/server/trunk/framework/bundles: axis/ axis/pom.xml pom.xml

Author: djencks
Date: Thu Dec 24 23:05:56 2009
New Revision: 893819

URL: http://svn.apache.org/viewvc?rev=893819&view=rev
Log:
GERONIMO-5003 axis 1 bundle

Added:
    geronimo/server/trunk/framework/bundles/axis/
    geronimo/server/trunk/framework/bundles/axis/pom.xml   (with props)
Modified:
    geronimo/server/trunk/framework/bundles/pom.xml

Added: geronimo/server/trunk/framework/bundles/axis/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/bundles/axis/pom.xml?rev=893819&view=auto
==============================================================================
--- geronimo/server/trunk/framework/bundles/axis/pom.xml (added)
+++ geronimo/server/trunk/framework/bundles/axis/pom.xml Thu Dec 24 23:05:56 2009
@@ -0,0 +1,97 @@
+<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">
+
+    <!--
+
+        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.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.geronimo.framework</groupId>
+        <artifactId>framework</artifactId>
+        <version>3.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.geronimo.bundles</groupId>
+    <artifactId>axis</artifactId>
+    <version>1.4_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache Geronimo Bundles: ${pkgArtifactId}-${pkgVersion}</name>
+    <description>
+        This bundle simply wraps ${pkgArtifactId}-${pkgVersion}.jar.
+    </description>
+
+    <properties>
+        <pkgGroupId>org.apache.axis</pkgGroupId>
+        <pkgArtifactId>axis</pkgArtifactId>
+        <pkgVersion>1.4</pkgVersion>
+    </properties>
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>true</optional>
+            <exclusions>
+                <exclusion>
+                    <groupId>axis</groupId>
+                    <artifactId>axis-jaxrpc</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>axis</groupId>
+                    <artifactId>axis-saaj</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>axis</groupId>
+                    <artifactId>axis-wsdl4j</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-discovery</groupId>
+                    <artifactId>commons-discovery</artifactId>
+                </exclusion>
+                <exclusion>
+                    <groupId>commons-logging</groupId>
+                    <artifactId>commons-logging</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions>
+                        <Export-Package>org.apache.axis*;version="1.4"</Export-Package>
+
+                        <Import-Package>com.sun*;resolution:=optional,
+                            sun*;resolution:=optional,
+                            org.apache.bsf*;resolution:=optional,
+                            org.apache.commons.httpclient*;resolution:=optional,
+                            org.apache.commons.net*;resolution:=optional,
+                            *</Import-Package>
+                        <!--<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>-->
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: geronimo/server/trunk/framework/bundles/axis/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/server/trunk/framework/bundles/axis/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/server/trunk/framework/bundles/axis/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: geronimo/server/trunk/framework/bundles/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/framework/bundles/pom.xml?rev=893819&r1=893818&r2=893819&view=diff
==============================================================================
--- geronimo/server/trunk/framework/bundles/pom.xml (original)
+++ geronimo/server/trunk/framework/bundles/pom.xml Thu Dec 24 23:05:56 2009
@@ -39,6 +39,7 @@
         <module>asm-commons-3.1</module>
         <module>aspectjrt</module>
         <module>aspectjweaver</module>
+        <module>axis</module>
         <module>castor</module>
         <module>commons-digester</module>
         <module>commons-discovery</module>