You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2012/10/13 16:04:33 UTC

svn commit: r1397830 - in /axis/axis1/java/trunk: axis/ axis/pom.xml pom.xml

Author: veithen
Date: Sat Oct 13 14:04:33 2012
New Revision: 1397830

URL: http://svn.apache.org/viewvc?rev=1397830&view=rev
Log:
Reintroduced the org.apache.axis:axis artifact as an Uber-JAR produced with maven-shade-plugin (for compatibility with Axis 1.4).

Added:
    axis/axis1/java/trunk/axis/   (with props)
    axis/axis1/java/trunk/axis/pom.xml   (with props)
Modified:
    axis/axis1/java/trunk/pom.xml

Propchange: axis/axis1/java/trunk/axis/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Oct 13 14:04:33 2012
@@ -0,0 +1 @@
+target

Added: axis/axis1/java/trunk/axis/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/pom.xml?rev=1397830&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis/pom.xml (added)
+++ axis/axis1/java/trunk/axis/pom.xml Sat Oct 13 14:04:33 2012
@@ -0,0 +1,76 @@
+<?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.
+  -->
+<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.axis</groupId>
+        <artifactId>axis-project</artifactId>
+        <version>1.4.1-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>axis</artifactId>
+    <name>Axis Uber-JAR</name>
+    <description>Uber-JAR containing the same packages as the corresponding JAR from Axis 1.4. For compatibility only.</description>
+    <url>${baseUrl}/core</url>
+    <distributionManagement>
+        <site>
+            <id>axis</id>
+            <url>${baseSiteUrl}/core</url>
+        </site>
+    </distributionManagement>
+    <dependencies>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis-rt-core</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>axis-rt-databinding-castor</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-shade-plugin</artifactId>
+                <version>2.0</version>
+                <executions>
+                    <execution>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>shade</goal>
+                        </goals>
+                        <configuration>
+                            <artifactSet>
+                                <includes>
+                                    <include>${project.groupId}:axis-rt-core</include>
+                                    <include>${project.groupId}:axis-rt-databinding-castor</include>
+                                </includes>
+                            </artifactSet>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: axis/axis1/java/trunk/axis/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: axis/axis1/java/trunk/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1397830&r1=1397829&r2=1397830&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Sat Oct 13 14:04:33 2012
@@ -57,6 +57,7 @@
     </mailingLists>
     <inceptionYear>2000</inceptionYear>
     <modules>
+        <module>axis</module>
         <module>axis-rt-core</module>
         <module>axis-jaxrpc</module>
         <module>axis-saaj</module>