summaryrefslogtreecommitdiffstats
path: root/vespa-3party-jars
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2023-01-12 17:11:01 +0100
committerBjørn Christian Seime <bjorncs@yahooinc.com>2023-01-20 14:46:37 +0100
commitec5c06887cdfe5c31ae561a0e671fb943b324d04 (patch)
treecae6ff947a669f846914c0db83d6748a597b2024 /vespa-3party-jars
parentb7e28f7960ba06d10b4bb8b10681acbf34230b32 (diff)
Inline apache http client artifacts in container-apache-http-client-bundle
Allows container-apache-http-client-bundle to be used on classpath for classic fatjars. Since the bundle is now built with Felix's bundle plugin, there is no need to depend on jdisc_core or manually export through `@PublicApi` annotations.
Diffstat (limited to 'vespa-3party-jars')
-rw-r--r--vespa-3party-jars/pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/vespa-3party-jars/pom.xml b/vespa-3party-jars/pom.xml
index 9158c8ba281..477c14f0015 100644
--- a/vespa-3party-jars/pom.xml
+++ b/vespa-3party-jars/pom.xml
@@ -26,6 +26,17 @@
<type>pom</type>
</dependency>
<dependency>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>container-apache-http-client-bundle</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
</dependency>
@@ -58,6 +69,7 @@
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<excludeTransitive>false</excludeTransitive>
+ <excludeGroupIds>com.yahoo.vespa</excludeGroupIds>
</configuration>
</plugin>
</plugins>