- cleanup

This commit is contained in:
Richard Alam 2013-04-10 14:15:22 +00:00
parent 6ef3a8d51a
commit 2cd99552b6
42 changed files with 0 additions and 178 deletions

View File

@ -1,47 +0,0 @@
Manifest-Version: 1.0
Export-Package: org.freeswitch.esl.client;uses:="org.freeswitch.esl.cl
ient.transport.event,org.jboss.netty.channel",org.freeswitch.esl.clie
nt.transport;uses:="org.freeswitch.esl.client.transport.message",org.
freeswitch.esl.client.transport.event;uses:="org.freeswitch.esl.clien
t.transport.message,org.slf4j",org.freeswitch.esl.client.transport.me
ssage;uses:="org.slf4j,org.jboss.netty.channel",org.freeswitch.esl.cl
ient.inbound;uses:="org.freeswitch.esl.client.transport.event,org.fre
eswitch.esl.client,org.slf4j,org.jboss.netty.channel,org.freeswitch.e
sl.client.transport,org.freeswitch.esl.client.transport.message,org.j
boss.netty.channel.socket.nio,org.jboss.netty.bootstrap,org.jboss.net
ty.buffer,org.jboss.netty.handler.execution,org.jboss.netty.handler.c
odec.frame,org.jboss.netty.handler.codec.string,org.freeswitch.esl.cl
ient.internal.debug",org.freeswitch.esl.client.internal.debug;uses:="
org.jboss.netty.channel,org.jboss.netty.util,org.slf4j,org.jboss.nett
y.util.internal",org.freeswitch.esl.client.manager;uses:="org.freeswi
tch.esl.client.manager.internal,org.freeswitch.esl.client.inbound",or
g.freeswitch.esl.client.manager.internal;uses:="org.freeswitch.esl.cl
ient.transport,org.freeswitch.esl.client.inbound,org.freeswitch.esl.c
lient.manager"
Built-By: leif
Tool: Bnd-0.0.357
Bundle-Name: FreeSWITCH Event Socket Library - Java Client
Created-By: Apache Maven Bundle Plugin
Bundle-Vendor: FreeSWITCH.org
Build-Jdk: 1.6.0_20
Bundle-Version: 0.9.0.SNAPSHOT
Bnd-LastModified: 1277609270704
Bundle-ManifestVersion: 2
Bundle-License: http://www.apache.org/licenses/LICENSE-2.0
Bundle-Description: The FreeSWITCH Event Socket Library provides a TCP
based control and/or monitoring interface to a running switch. T
his project provides a Java client to the ESL.
Import-Package: org.freeswitch.esl.client,org.freeswitch.esl.client.in
bound,org.freeswitch.esl.client.internal.debug,org.freeswitch.esl.cli
ent.manager,org.freeswitch.esl.client.manager.internal,org.freeswitch
.esl.client.transport,org.freeswitch.esl.client.transport.event,org.f
reeswitch.esl.client.transport.message,org.jboss.netty.bootstrap;vers
ion="3.1",org.jboss.netty.buffer;version="3.1",org.jboss.netty.channe
l;version="3.1",org.jboss.netty.channel.socket.nio;version="3.1",org.
jboss.netty.handler.codec.frame;version="3.1",org.jboss.netty.handler
.codec.string;version="3.1",org.jboss.netty.handler.execution;version
="3.1",org.jboss.netty.util;version="3.1",org.jboss.netty.util.intern
al,org.slf4j;version="1.5"
Bundle-SymbolicName: org.freeswitch.esl.client
Bundle-DocURL: http://www.freeswitch.org

View File

@ -1,5 +0,0 @@
#Generated by org.apache.felix.bundleplugin
#Sat Jun 26 23:27:50 EDT 2010
version=0.9.0-SNAPSHOT
groupId=org.freeswitch.esl.client
artifactId=org.freeswitch.esl.client

View File

@ -1,126 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Copyright 2010 david varnes.
*
* Licensed 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.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.freeswitch.esl.client</groupId>
<artifactId>esl-client-parent</artifactId>
<version>0.9.0-SNAPSHOT</version>
</parent>
<artifactId>org.freeswitch.esl.client</artifactId>
<name>FreeSWITCH Event Socket Library - Java Client</name>
<packaging>bundle</packaging>
<build>
<plugins>
<!-- this plugin will create the target jar as a correct OSGi bundle -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.0.1</version>
<extensions>true</extensions>
<configuration>
<unpackBundle>true</unpackBundle>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Version>${project.version}</Bundle-Version>
<Bundle-DocURL>http://www.freeswitch.org</Bundle-DocURL>
<Import-Package>*</Import-Package>
<Export-Package>
org.freeswitch.esl.client,
org.freeswitch.esl.client.transport,
org.freeswitch.esl.client.transport.event,
org.freeswitch.esl.client.transport.message,
org.freeswitch.esl.client.inbound,
org.freeswitch.esl.client.internal.debug,
org.freeswitch.esl.client.manager,
org.freeswitch.esl.client.manager.internal,
</Export-Package>
<!-- the debug package is a temporary hack -->
<Private-Package>
org.freeswitch.esl.client.internal,
org.freeswitch.esl.client.debug
</Private-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/ClientTest.java</exclude>
<exclude>**/SocketClientTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.10</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.8</version>
</dependency>
<dependency>
<groupId>org.jboss.netty</groupId>
<artifactId>netty</artifactId>
<version>3.1.5.GA</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>0.9.18</version>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<!-- for netty dependency -->
<repository>
<id>repository.jboss.org</id>
<url>http://repository.jboss.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>