Initial opendaylight infrastructure commit!!
[controller.git] / third-party / jersey-servlet / pom.xml
diff --git a/third-party/jersey-servlet/pom.xml b/third-party/jersey-servlet/pom.xml
new file mode 100644 (file)
index 0000000..dfb8968
--- /dev/null
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <!-- Get some common settings for the project we are using it in -->
+  <parent>
+    <groupId>org.opendaylight.controller</groupId>
+    <artifactId>commons.thirdparty</artifactId>
+    <version>1.1.0-SNAPSHOT</version>
+    <relativePath>../commons/thirdparty</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.opendaylight.controller.thirdparty</groupId>
+  <artifactId>com.sun.jersey.jersey-servlet</artifactId>
+  <version>1.17-SNAPSHOT</version>
+  <packaging>bundle</packaging>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>2.3.6</version>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Embed-Dependency>*;scope=!provided;type=!pom;inline=false</Embed-Dependency>
+            <Embed-Transitive>false</Embed-Transitive>
+            <Export-Package>
+              com.sun.jersey.api.core.servlet,
+              com.sun.jersey.spi.container.servlet,
+              com.sun.jersey.spi.scanning.servlet,
+              com.sun.jersey.server.impl.container.servlet
+            </Export-Package>
+            <Import-Package>
+              com.sun.jersey.api.container,
+              com.sun.jersey.api.core,
+              com.sun.jersey.api.model,
+              com.sun.jersey.api.representation,
+              com.sun.jersey.api.uri,
+              com.sun.jersey.api.view,
+              com.sun.jersey.core.header,
+              com.sun.jersey.core.reflection,
+              com.sun.jersey.core.spi.component,
+              com.sun.jersey.core.spi.component.ioc,
+              com.sun.jersey.core.spi.scanning,
+              com.sun.jersey.core.util,
+              com.sun.jersey.server.impl,
+              com.sun.jersey.server.impl.application,
+              com.sun.jersey.server.impl.inject,
+              com.sun.jersey.server.impl.monitoring,
+              com.sun.jersey.server.probes,
+              com.sun.jersey.server.spi.component,
+              com.sun.jersey.spi,
+              com.sun.jersey.spi.container,
+              com.sun.jersey.spi.dispatch,
+              com.sun.jersey.spi.inject,
+              com.sun.jersey.spi.service,
+              com.sun.jersey.spi.template,
+              javax.naming,
+              javax.ws.rs,
+              javax.ws.rs.core,
+              javax.ws.rs.ext,
+              *;resolution:=optional
+            </Import-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-servlet</artifactId>
+      <version>1.17</version>
+    </dependency>
+    <dependency>
+      <groupId>equinoxSDK381</groupId>
+      <artifactId>javax.servlet</artifactId>
+      <version>3.0.0.v201112011016</version>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
+</project>