Cleanup unused
Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/0ae7fd61 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/0ae7fd61 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/0ae7fd61 Branch: refs/heads/master Commit: 0ae7fd610d12540dc50f2b45d3ade7adab83b239 Parents: f959e93 Author: Jean-Baptiste Onofré <[email protected]> Authored: Sun Jul 2 22:34:37 2017 +0200 Committer: Jean-Baptiste Onofré <[email protected]> Committed: Sun Jul 2 22:34:37 2017 +0200 ---------------------------------------------------------------------- spymemcached-2.5/pom.xml | 116 ------------------- .../src/main/resources/OSGI-INF/bundle.info | 25 ---- 2 files changed, 141 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0ae7fd61/spymemcached-2.5/pom.xml ---------------------------------------------------------------------- diff --git a/spymemcached-2.5/pom.xml b/spymemcached-2.5/pom.xml deleted file mode 100644 index d9e92e1..0000000 --- a/spymemcached-2.5/pom.xml +++ /dev/null @@ -1,116 +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.spymemcached</artifactId> - <version>2.5_3-SNAPSHOT</version> - <packaging>bundle</packaging> - <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name> - <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description> - - <properties> - <pkgGroupId>spy</pkgGroupId> - <pkgArtifactId>memcached</pkgArtifactId> - <pkgVersion>2.5</pkgVersion> - <servicemix.osgi.export.pkg> - net.spy.memcached - </servicemix.osgi.export.pkg> - <servicemix.osgi.import.pkg> - javax.security*, - org.apache.log4j;version="[1.2,2)", - </servicemix.osgi.import.pkg> - </properties> - - <repositories> - <repository> - <id>spy</id> - <name>Spy Repository</name> - <layout>default</layout> - <url>http://bleu.west.spy.net/~dustin/m2repo/</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - </repositories> - - <dependencies> - <dependency> - <groupId>${pkgGroupId}</groupId> - <artifactId>${pkgArtifactId}</artifactId> - <version>${pkgVersion}</version> - <optional>true</optional> - </dependency> - - <!-- sources --> - <!-- Not available - <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/0ae7fd61/spymemcached-2.5/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/spymemcached-2.5/src/main/resources/OSGI-INF/bundle.info b/spymemcached-2.5/src/main/resources/OSGI-INF/bundle.info deleted file mode 100644 index 94707a8..0000000 --- a/spymemcached-2.5/src/main/resources/OSGI-INF/bundle.info +++ /dev/null @@ -1,25 +0,0 @@ -\u001B[1mSYNOPSIS\u001B[0m - ${project.description} - - Original Maven URL: - \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m - -\u001B[1mDESCRIPTION\u001B[0m - A simple, asynchronous, single-threaded memcached client written in java. - - * Efficient storage of objects. General serializable objects are stored in their serialized form and optionally - compressed if they meet criteria. Certain native objects are stored as tightly as possible (for example, a - Date object generally consumes six bytes, and a Long can be anywhere from zero to eight bytes). - * Resilient to server and network outages. In many cases, a client operation can be replayed against a server - if it goes away and comes back. In cases where it can't, it will communicate that as well. An exponential - backoff reconnect algorithm is applied when a memcached becomes unavailable, but asynchronous operations will - queue up for the server to be applied when it comes back online. - * Operations are asynchronous. It is possible to issue a store and continue processing without having to wait - for that operation to finish. It is even possible to issue a get, do some further processing, check the result - of the get and cancel it if it doesn't return fast enough. - * There is only one thread for all processing. Regardless of the number of requests, threads using the client, - or servers to which the client is connected, only one thread will ever be allocated to a given MemcachedClient. - * Aggressively optimized. There are many optimizations that combine to provide high throughput. - -\u001B[1mSEE ALSO\u001B[0m - \u001B[36mhttp://code.google.com/p/spymemcached/\u001B[0m
