Cleanup abdera 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/c3bafd7c Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/c3bafd7c Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/c3bafd7c Branch: refs/heads/master Commit: c3bafd7ceb06c6de2746a4f43fd755ce5d55b07a Parents: 7ce0aee Author: Jean-Baptiste Onofré <[email protected]> Authored: Mon Jul 3 07:44:43 2017 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Mon Jul 3 07:44:43 2017 +0200 ---------------------------------------------------------------------- abdera-0.4.0-incubating/pom.xml | 171 ------------------- .../src/main/resources/OSGI-INF/bundle.info | 12 -- abdera-parser-1.1.3/pom.xml | 129 -------------- .../src/main/resources/OSGI-INF/bundle.info | 12 -- 4 files changed, 324 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/c3bafd7c/abdera-0.4.0-incubating/pom.xml ---------------------------------------------------------------------- diff --git a/abdera-0.4.0-incubating/pom.xml b/abdera-0.4.0-incubating/pom.xml deleted file mode 100644 index 0917aa9..0000000 --- a/abdera-0.4.0-incubating/pom.xml +++ /dev/null @@ -1,171 +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>8</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.abdera</artifactId> - <packaging>bundle</packaging> - <version>0.4.0-incubating_7-SNAPSHOT</version> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps abdera-core ${pkgVersion} jar file.</description> - - <properties> - <pkgGroupId>org.apache.abdera</pkgGroupId> - <pkgArtifactId>abdera</pkgArtifactId> - <pkgVersion>0.4.0-incubating</pkgVersion> - <servicemix.osgi.export.pkg> - org.apache.abdera - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - org.apache.axiom*;resolution:=optional;version="[1.2.5,2)", - org.apache.commons.httpclient*;resolution:=optional, - org.apache.commons.logging*;version="[1.1,2)", - org.jaxen*;resolution:=optional;version="[1.1.1,2)", - javax.servlet*;resolution:=optional;version="[2.4,3)", - javax.xml*;resolution:=optional, - nu.validator*;resolution:=optional;version="[1.0,2)", - * - </servicemix.osgi.import.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>abdera-core</artifactId> - <version>${pkgVersion}</version> - <optional>true</optional> - <exclusions> - <exclusion> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>abdera-i18n</artifactId> - <version>${pkgVersion}</version> - <optional>true</optional> - </dependency> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>abdera-parser</artifactId> - <version>${pkgVersion}</version> - <optional>true</optional> - </dependency> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>abdera-extensions-json</artifactId> - <version>${pkgVersion}</version> - <optional>true</optional> - </dependency> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>abdera-extensions-main</artifactId> - <version>${pkgVersion}</version> - <optional>true</optional> - <exclusions> - <exclusion> - <groupId>commons-httpclient</groupId> - <artifactId>commons-httpclient</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.commons-codec</artifactId> - <version>1.3_2</version> - </dependency> - <dependency> - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.commons-httpclient</artifactId> - <version>3.1_3</version> - <optional>true</optional> - </dependency> - - <!-- sourcces --> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>abdera-core</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - <optional>true</optional> - <exclusions> - <exclusion> - <groupId>commons-codec</groupId> - <artifactId>commons-codec</artifactId> - </exclusion> - </exclusions> - </dependency> - </dependencies> - - <repositories> - <!-- Incubator repo --> - <repository> - <id>apache.incubator</id> - <name>Apache Incubator Repository</name> - <url>http://people.apache.org/repo/m2-incubating-repository</url> - </repository> - </repositories> - - <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}:abdera-core</include> - </includes> - </artifactSet> - <filters> - <filter> - <artifact>${pkgGroupId}:abdera-core</artifact> - <excludes> - <exclude>**</exclude> - </excludes> - </filter> - </filters> - <promoteTransitiveDependencies>true</promoteTransitiveDependencies> - <createDependencyReducedPom>false</createDependencyReducedPom> - <keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> -</project> http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/c3bafd7c/abdera-0.4.0-incubating/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/abdera-0.4.0-incubating/src/main/resources/OSGI-INF/bundle.info b/abdera-0.4.0-incubating/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index fd32f1c..0000000 --- a/abdera-0.4.0-incubating/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,12 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/abdera-core/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - Apache Abdera is a functionally-complete, high-performance implementation of the IETF Atom Syndication - format (RFC 4287) and Atom Publishing Protocol(RFC 5023) specification. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://abdera.apache.org/\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/c3bafd7c/abdera-parser-1.1.3/pom.xml ---------------------------------------------------------------------- diff --git a/abdera-parser-1.1.3/pom.xml b/abdera-parser-1.1.3/pom.xml deleted file mode 100644 index 0da9ba4..0000000 --- a/abdera-parser-1.1.3/pom.xml +++ /dev/null @@ -1,129 +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>12</version> - <relativePath>../bundles-pom/pom.xml</relativePath> - </parent> - - <groupId>org.apache.servicemix.bundles</groupId> - <artifactId>org.apache.servicemix.bundles.abdera-parser</artifactId> - <packaging>bundle</packaging> - <version>1.1.3_3-SNAPSHOT</version> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <scm> - <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection> - <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection> - <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url> - <tag>HEAD</tag> - </scm> - - <properties> - <pkgGroupId>org.apache.abdera</pkgGroupId> - <pkgArtifactId>abdera-parser</pkgArtifactId> - <pkgVersion>1.1.3</pkgVersion> - <servicemix.osgi.export.pkg> - org.apache.abdera.parser.stax - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - org.dom4j*, - org.jdom*, - nu.xom.*;resolution:=optional, - com.sun.msv.*;resolution:=optional, - org.relaxng.datatype.*;resolution:=optional, - org.apache.commons.logging;resolution:=optional, - * - </servicemix.osgi.import.pkg> - <servicemix.osgi.embed.dependency> - axiom-api, - axiom-impl, - jaxen - </servicemix.osgi.embed.dependency> - </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.felix</groupId> - <artifactId>maven-bundle-plugin</artifactId> - <inherited>true</inherited> - <configuration> - <instructions> - <Embed-Transitive>true</Embed-Transitive> - </instructions> - </configuration> - </plugin> - <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/c3bafd7c/abdera-parser-1.1.3/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/abdera-parser-1.1.3/src/main/resources/OSGI-INF/bundle.info b/abdera-parser-1.1.3/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index fd32f1c..0000000 --- a/abdera-parser-1.1.3/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,12 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/abdera-core/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - Apache Abdera is a functionally-complete, high-performance implementation of the IETF Atom Syndication - format (RFC 4287) and Atom Publishing Protocol(RFC 5023) specification. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://abdera.apache.org/\u001B[0m
