You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2019/04/26 06:11:04 UTC

[servicemix-bundles] branch master updated: Cleanup old jaxen bundle

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicemix-bundles.git


The following commit(s) were added to refs/heads/master by this push:
     new 8de9a74  Cleanup old jaxen bundle
8de9a74 is described below

commit 8de9a741f4101e09042aae5f1d497ce12dd05d2b
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Fri Apr 26 08:10:40 2019 +0200

    Cleanup old jaxen bundle
---
 jaxen-1.1.6/pom.xml                                | 126 ---------------------
 .../src/main/resources/OSGI-INF/bundle.info        |  13 ---
 2 files changed, 139 deletions(-)

diff --git a/jaxen-1.1.6/pom.xml b/jaxen-1.1.6/pom.xml
deleted file mode 100644
index 6d58b7d..0000000
--- a/jaxen-1.1.6/pom.xml
+++ /dev/null
@@ -1,126 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<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/xsd/maven-4.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.servicemix.bundles</groupId>
-        <artifactId>bundles-pom</artifactId>
-        <version>11</version>
-        <relativePath>../bundles-pom/pom.xml</relativePath>
-    </parent>
-
-    <groupId>org.apache.servicemix.bundles</groupId>
-    <artifactId>org.apache.servicemix.bundles.jaxen</artifactId>
-    <version>1.1.6_2-SNAPSHOT</version>
-    <packaging>bundle</packaging>
-    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
-    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
-
-    <properties>
-        <pkgGroupId>jaxen</pkgGroupId>
-        <pkgArtifactId>jaxen</pkgArtifactId>
-        <pkgVersion>1.1.6</pkgVersion>
-        <servicemix.osgi.export.pkg>
-            org.jaxen
-        </servicemix.osgi.export.pkg>
-        <servicemix.osgi.import.pkg>
-            javax.xml.parsers,
-            org.w3c.dom,
-            org.xml.sax,
-            nu.xom*;resolution:=optional;version="[1.1,2)",
-            org.dom4j*;resolution:=optional;version="[1.6.1,2)",
-            org.jdom*;resolution:=optional;version="[1.0,2)"
-        </servicemix.osgi.import.pkg>
-    </properties>
-
-    <dependencies>
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <optional>false</optional>
-            <exclusions>
-                <exclusion>
-                    <groupId>maven-plugins</groupId>
-                    <artifactId>maven-findbugs-plugin</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>maven-plugins</groupId>
-                    <artifactId>maven-cobertura-plugin</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-
-        <!-- sources -->
-        <dependency>
-            <groupId>${pkgGroupId}</groupId>
-            <artifactId>${pkgArtifactId}</artifactId>
-            <version>${pkgVersion}</version>
-            <classifier>sources</classifier>
-            <optional>false</optional>
-            <exclusions>
-                <exclusion>
-                    <groupId>maven-plugins</groupId>
-                    <artifactId>maven-findbugs-plugin</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>maven-plugins</groupId>
-                    <artifactId>maven-cobertura-plugin</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-    </dependencies>
-
-    <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>
-                            <artifactSet>
-                                <includes>
-                                    <include>${pkgGroupId}:${pkgArtifactId}</include>
-                                </includes>
-                            </artifactSet>
-                            <filters>
-                                <filter>
-                                    <artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
-                                    <excludes>
-                                        <exclude>**</exclude>
-                                    </excludes>
-                                </filter>
-                            </filters>
-                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
-                            <createDependencyReducedPom>true</createDependencyReducedPom>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
-</project>
diff --git a/jaxen-1.1.6/src/main/resources/OSGI-INF/bundle.info b/jaxen-1.1.6/src/main/resources/OSGI-INF/bundle.info
deleted file mode 100644
index 9c93a1e..0000000
--- a/jaxen-1.1.6/src/main/resources/OSGI-INF/bundle.info
+++ /dev/null
@@ -1,13 +0,0 @@
-\u001B[1mSYNOPSIS\u001B[0m
-    ${project.description}
-
-    Original Maven URL:
-        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
-
-\u001B[1mDESCRIPTION\u001B[0m
-    Jaxen is an open source XPath library written in Java. It is adaptable to many different object models, including
-    DOM, XOM, dom4j, and JDOM. Is it also possible to write adapters that treat non-XML trees such as compiled Java
-    byte code or Java beans as XML, thus enabling you to query these trees with XPath too.
-
-\u001B[1mSEE ALSO\u001B[0m
-    \u001B[36mhttp://jaxen.codehaus.org/\u001B[0m