Cleanup neethi 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/3fdc1795 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/3fdc1795 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/3fdc1795 Branch: refs/heads/master Commit: 3fdc17959848d661591f075d5843e328370c6b8e Parents: 3774a3b Author: Jean-Baptiste Onofré <[email protected]> Authored: Mon Jul 3 08:59:45 2017 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Mon Jul 3 08:59:45 2017 +0200 ---------------------------------------------------------------------- neethi-2.0.4/pom.xml | 157 ------------------- .../src/main/resources/OSGI-INF/bundle.info | 13 -- 2 files changed, 170 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/3fdc1795/neethi-2.0.4/pom.xml ---------------------------------------------------------------------- diff --git a/neethi-2.0.4/pom.xml b/neethi-2.0.4/pom.xml deleted file mode 100644 index 886b0fc..0000000 --- a/neethi-2.0.4/pom.xml +++ /dev/null @@ -1,157 +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.neethi</artifactId> - <version>2.0.4_6-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <properties> - <pkgGroupId>org.apache.neethi</pkgGroupId> - <pkgArtifactId>neethi</pkgArtifactId> - <pkgVersion>2.0.4</pkgVersion> - <servicemix.osgi.export.pkg> - org.apache.neethi - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - org.apache.axiom*;resolution:=optional, - sun.misc*;resolution:=optional, - javax.xml.namespace, - javax.xml.stream - </servicemix.osgi.import.pkg> - <servicemix.osgi.private.pkg /> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <optional>true</optional> - <exclusions> - <exclusion> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - </exclusion> - <exclusion> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.ws.commons.axiom</groupId> - <artifactId>axiom-impl</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.ws.commons.axiom</groupId> - <artifactId>axiom-parent</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.ws.commons.axiom</groupId> - <artifactId>axiom-api</artifactId> - </exclusion> - <exclusion> - <groupId>woodstox</groupId> - <artifactId>wstx-asl</artifactId> - </exclusion> - </exclusions> - </dependency> - - <!-- sources --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - <optional>true</optional> - <exclusions> - <exclusion> - <groupId>log4j</groupId> - <artifactId>log4j</artifactId> - </exclusion> - <exclusion> - <groupId>javax.servlet</groupId> - <artifactId>servlet-api</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.ws.commons.axiom</groupId> - <artifactId>axiom-impl</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.ws.commons.axiom</groupId> - <artifactId>axiom-parent</artifactId> - </exclusion> - <exclusion> - <groupId>org.apache.ws.commons.axiom</groupId> - <artifactId>axiom-api</artifactId> - </exclusion> - <exclusion> - <groupId>woodstox</groupId> - <artifactId>wstx-asl</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> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/3fdc1795/neethi-2.0.4/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/neethi-2.0.4/src/main/resources/OSGI-INF/bundle.info b/neethi-2.0.4/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index 0a50f82..0000000 --- a/neethi-2.0.4/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 - Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with latest - WS Policy specification which was published in March 2006. This framework is specifically written to enable the - Apache Web services stack to use WS Policy as a way of expressing it's requirements and capabilities. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://ws.apache.org/commons/neethi/\u001B[0m
