Cleanup commons-digester as it's now a bundle natively
Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/bb994975 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/bb994975 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/bb994975 Branch: refs/heads/master Commit: bb9949757fdae0ef958e5dee16f8cf64885de5a3 Parents: f6f6b6f Author: Jean-Baptiste Onofré <[email protected]> Authored: Mon Jul 3 08:46:43 2017 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Mon Jul 3 08:46:43 2017 +0200 ---------------------------------------------------------------------- commons-digester-1.8/pom.xml | 107 ------------------- .../src/main/resources/OSGI-INF/bundle.info | 29 ----- 2 files changed, 136 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/bb994975/commons-digester-1.8/pom.xml ---------------------------------------------------------------------- diff --git a/commons-digester-1.8/pom.xml b/commons-digester-1.8/pom.xml deleted file mode 100644 index a2707cd..0000000 --- a/commons-digester-1.8/pom.xml +++ /dev/null @@ -1,107 +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>9-SNAPSHOT</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.commons-digester</artifactId> - <version>1.8_5-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <properties> - <pkgGroupId>commons-digester</pkgGroupId> - <pkgArtifactId>commons-digester</pkgArtifactId> - <pkgVersion>1.8</pkgVersion> - <servicemix.osgi.export.pkg> - org.apache.commons.digester - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - javax.xml*, - org.w3c.dom, - org.xml.sax*, - org.apache.commons.beanutils;version="[1.7,2)", - org.apache.commons.collections;version="[3.2,4)", - org.apache.commons.logging*;resolution:=optional - </servicemix.osgi.import.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <optional>true</optional> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - <optional>true</optional> - </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> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/bb994975/commons-digester-1.8/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/commons-digester-1.8/src/main/resources/OSGI-INF/bundle.info b/commons-digester-1.8/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index e612041..0000000 --- a/commons-digester-1.8/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,29 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - Many projects read XML configuration files to provide initialization of various Java objects within the - system. There are several ways of doing this, and the Digester component was designed to provide a common - implementation that can be used in many different projects. - - Basically, the Digester package lets you configure an XML -> Java object mapping module, which triggers - certain actions called rules whenever a particular pattern of nested XML elements is recognized. A rich set - of predefined rules is available for your use, or you can also create your own. - Advanced features of Digester include: - - * Ability to plug in your own pattern matching engine, if the standard one is not sufficient for your - requirements. - * Optional namespace-aware processing, so that you can define rules that are relevant only to a particular - XML namespace. - * Encapsulation of Rules into RuleSets that can be easily and conveniently reused in more than one - application that requires the same type of processing. - - Starting from release 2.1, the Digester supports Java5 Annotations definition of rules improving - maintainability of both Java code and XML documents, since rules are now defined in POJOs and Digester - parser instances can be generated at run-time, avoiding manual updates. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://commons.apache.org/digester/\u001B[0m
