| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Copyright (c) 2010 Sonatype, Inc. |
| All rights reserved. This program and the accompanying materials |
| are made available under the terms of the Eclipse Public License v1.0 |
| which accompanies this distribution, and is available at |
| http://www.eclipse.org/legal/epl-v10.html |
| --> |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.eclipse.m2e</groupId> |
| <artifactId>m2e-maven-runtime</artifactId> |
| <version>1.4.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>com.ning.async-http-client</artifactId> |
| <packaging>bundle</packaging> |
| |
| <name>async-http-client</name> |
| |
| <properties> |
| <async-http-client.version>1.6.5</async-http-client.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>com.ning</groupId> |
| <artifactId>async-http-client</artifactId> |
| <version>${async-http-client.version}</version> |
| <optional>true</optional> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <configuration> |
| <instructions> |
| <Embed-Dependency> |
| async-http-client |
| </Embed-Dependency> |
| |
| <_exportcontents> |
| com.ning.http.*;version="${async-http-client.version}" |
| </_exportcontents> |
| |
| <Bundle-Version>${async-http-client.version}.${osgi-version-qualifier}</Bundle-Version> |
| |
| <Import-Package> |
| !org.apache.commons.httpclient.*, |
| org.jboss.netty.*;resolution:=mandatory, |
| org.slf4j.*;version="1.6.2";resolution:=mandatory, |
| * |
| </Import-Package> |
| </instructions> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-p2-plugin</artifactId> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |