summaryrefslogtreecommitdiffstats
path: root/vespa-3party-bundles
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-06-07 20:34:10 +0200
committergjoranv <gv@verizonmedia.com>2022-06-08 11:45:32 +0200
commit03b90ed087e37ddacd5bc2e31e6442111b90d61d (patch)
treed3e40aa4970fe0c1f169413159d86770265ea38d /vespa-3party-bundles
parentfb9d9540ccd782ba67ba45c1f17660ca93e4f343 (diff)
Rename vespa_jersey2 to vespa-3party-bundles
Diffstat (limited to 'vespa-3party-bundles')
-rw-r--r--vespa-3party-bundles/.gitignore1
-rw-r--r--vespa-3party-bundles/CMakeLists.txt2
-rw-r--r--vespa-3party-bundles/OWNERS1
-rw-r--r--vespa-3party-bundles/README1
-rw-r--r--vespa-3party-bundles/pom.xml61
5 files changed, 66 insertions, 0 deletions
diff --git a/vespa-3party-bundles/.gitignore b/vespa-3party-bundles/.gitignore
new file mode 100644
index 00000000000..ea8c4bf7f35
--- /dev/null
+++ b/vespa-3party-bundles/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/vespa-3party-bundles/CMakeLists.txt b/vespa-3party-bundles/CMakeLists.txt
new file mode 100644
index 00000000000..9451c93ca6f
--- /dev/null
+++ b/vespa-3party-bundles/CMakeLists.txt
@@ -0,0 +1,2 @@
+# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+install_jar_dependencies(vespa-3party-bundles)
diff --git a/vespa-3party-bundles/OWNERS b/vespa-3party-bundles/OWNERS
new file mode 100644
index 00000000000..3b2ba1ede81
--- /dev/null
+++ b/vespa-3party-bundles/OWNERS
@@ -0,0 +1 @@
+gjoranv
diff --git a/vespa-3party-bundles/README b/vespa-3party-bundles/README
new file mode 100644
index 00000000000..d2775883a75
--- /dev/null
+++ b/vespa-3party-bundles/README
@@ -0,0 +1 @@
+Jersey2 dependencies for JDisc Container
diff --git a/vespa-3party-bundles/pom.xml b/vespa-3party-bundles/pom.xml
new file mode 100644
index 00000000000..efa4edf89b4
--- /dev/null
+++ b/vespa-3party-bundles/pom.xml
@@ -0,0 +1,61 @@
+<?xml version="1.0"?>
+<!-- Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. -->
+<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>com.yahoo.vespa</groupId>
+ <artifactId>parent</artifactId>
+ <version>7-SNAPSHOT</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>vespa-3party-bundles</artifactId>
+ <version>7-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <dependencies>
+
+ <dependency>
+ <groupId>javax.ws.rs</groupId>
+ <artifactId>javax.ws.rs-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.datatype</groupId>
+ <artifactId>jackson-datatype-jdk8</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>com.fasterxml.jackson.datatype</groupId>
+ <artifactId>jackson-datatype-jsr310</artifactId>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <!-- Explicit for IntelliJ to detect correct language level from parent -->
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-dependencies</id>
+ <phase>package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <overWriteReleases>false</overWriteReleases>
+ <overWriteSnapshots>false</overWriteSnapshots>
+ <excludeTransitive>false</excludeTransitive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>