Cleanup json 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/bed613cc Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/bed613cc Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/bed613cc Branch: refs/heads/master Commit: bed613ccf6600246040b05c21a5c7425dcfd6f58 Parents: 3ad5dc2 Author: Jean-Baptiste Onofré <[email protected]> Authored: Mon Jul 3 06:27:24 2017 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Mon Jul 3 06:27:24 2017 +0200 ---------------------------------------------------------------------- json-20140107/pom.xml | 102 ------------------- .../src/main/resources/OSGI-INF/bundle.info | 21 ---- 2 files changed, 123 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/bed613cc/json-20140107/pom.xml ---------------------------------------------------------------------- diff --git a/json-20140107/pom.xml b/json-20140107/pom.xml deleted file mode 100644 index 632bed6..0000000 --- a/json-20140107/pom.xml +++ /dev/null @@ -1,102 +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.json</artifactId> - <version>20140107_2-SNAPSHOT</version> - - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <properties> - <pkgGroupId>org.json</pkgGroupId> - <pkgArtifactId>json</pkgArtifactId> - <pkgVersion>20140107</pkgVersion> - <servicemix.osgi.export.pkg> - org.json - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - - </servicemix.osgi.import.pkg> - </properties> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - </dependency> - - <!-- sources --> - <!-- Not available - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <classifier>sources</classifier> - </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/bed613cc/json-20140107/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/json-20140107/src/main/resources/OSGI-INF/bundle.info b/json-20140107/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index b7bd389..0000000 --- a/json-20140107/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,21 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. - It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, - Standard ECMA-262 3rd Edition - December 1999. JSON is a text format that is completely language independent - but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, - JavaScript, Perl, Python, and many others. These properties make JSON an ideal data-interchange language. - - JSON is built on two structures: - A collection of name/value pairs. In various languages, this is realized as an object, record, struct, dictionary, - hash table, keyed list, or associative array. - An ordered list of values. In most languages, this is realized as an array, vector, list, or sequence. - - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://www.json.org/java/index.html\u001B[0m
