Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'm2e-maven-runtime/org.jboss.netty/pom.xml')
-rw-r--r--m2e-maven-runtime/org.jboss.netty/pom.xml85
1 files changed, 0 insertions, 85 deletions
diff --git a/m2e-maven-runtime/org.jboss.netty/pom.xml b/m2e-maven-runtime/org.jboss.netty/pom.xml
deleted file mode 100644
index 06c5697b..00000000
--- a/m2e-maven-runtime/org.jboss.netty/pom.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-<?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.5.0-SNAPSHOT</version>
- </parent>
-
- <artifactId>org.jboss.netty</artifactId>
- <packaging>bundle</packaging>
-
- <name>The Netty Project</name>
-
- <properties>
- <netty.version>3.2.5.Final</netty.version>
- <osgi-version-qualifier>Final-${maven.build.timestamp}</osgi-version-qualifier>
- </properties>
-
- <dependencies>
- <dependency>
- <groupId>org.jboss.netty</groupId>
- <artifactId>netty</artifactId>
- <version>${netty.version}</version>
- <optional>true</optional>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <configuration>
- <instructions>
- <Embed-Dependency>
- netty
- </Embed-Dependency>
-
- <_exportcontents>
- org.jboss.netty.*;version="3.2.5"
- </_exportcontents>
-
- <Bundle-Version>3.2.5.${osgi-version-qualifier}</Bundle-Version>
- <Bundle-Activator>org.jboss.netty.container.osgi.NettyBundleActivator</Bundle-Activator>
-
- <Import-Package>
- org.jboss.netty.*;version="[3.2,5)",
- org.slf4j;version="[1.5.0,2.0.0)",
- org.osgi.*,
- !*
- </Import-Package>
- </instructions>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-p2-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>m2e</id>
- <activation>
- <property>
- <name>m2e.version</name>
- </property>
- </activation>
- <properties>
- <osgi-version-qualifier>qualifier</osgi-version-qualifier>
- </properties>
- </profile>
- </profiles>
-</project>

Back to the top