You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by db...@apache.org on 2008/08/09 05:14:52 UTC

svn commit: r684174 - in /openejb/trunk/openejb3/deps/asm-finder: ./ pom.xml

Author: dblevins
Date: Fri Aug  8 20:14:51 2008
New Revision: 684174

URL: http://svn.apache.org/viewvc?rev=684174&view=rev
Log:
OPENEJB-892: Remove ASM dependency
Was supposed to have been checked in with previous commit

Added:
    openejb/trunk/openejb3/deps/asm-finder/
    openejb/trunk/openejb3/deps/asm-finder/pom.xml

Added: openejb/trunk/openejb3/deps/asm-finder/pom.xml
URL: http://svn.apache.org/viewvc/openejb/trunk/openejb3/deps/asm-finder/pom.xml?rev=684174&view=auto
==============================================================================
--- openejb/trunk/openejb3/deps/asm-finder/pom.xml (added)
+++ openejb/trunk/openejb3/deps/asm-finder/pom.xml Fri Aug  8 20:14:51 2008
@@ -0,0 +1,75 @@
+<?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>
+  <groupId>org.apache.openejb</groupId>
+  <artifactId>asm-finder</artifactId>
+  <packaging>jar</packaging>
+  <version>3.1-SNAPSHOT</version>
+  <name>OpenEJB :: Dependencies :: ASM and Finder</name>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <relocations>
+                <relocation>
+                  <pattern>org.objectweb.asm</pattern>
+                  <shadedPattern>org.apache.openejb.asm</shadedPattern>
+                </relocation>
+                <relocation>
+                  <pattern>org.apache.xbean.finder</pattern>
+                  <shadedPattern>org.apache.openejb.finder</shadedPattern>
+                </relocation>
+              </relocations>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>asm</groupId>
+      <artifactId>asm-commons</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>asm</groupId>
+      <artifactId>asm</artifactId>
+      <version>3.1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.xbean</groupId>
+      <artifactId>xbean-finder</artifactId>
+      <version>3.4.2</version>
+    </dependency>
+  </dependencies>
+</project>