summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2022-07-12 14:22:13 +0200
committerGitHub <noreply@github.com>2022-07-12 14:22:13 +0200
commit7d3710cda10e494816766135b849fc7dba8d777f (patch)
treef6c714b424926df371e384f78d237a4ec41f8d06
parent321ed2244e6cd5f785f5a7a83ad534fe2c716073 (diff)
parent0e6d59ce43a7dc16930edd631723e1dfb3296271 (diff)
Merge pull request #23472 from vespa-engine/bjorncs/jdk17
Modules are no longer dependency of JDK8 based clients
-rw-r--r--http-utils/pom.xml4
-rw-r--r--security-utils/pom.xml9
2 files changed, 4 insertions, 9 deletions
diff --git a/http-utils/pom.xml b/http-utils/pom.xml
index 52dac0cfeea..5b26235b62e 100644
--- a/http-utils/pom.xml
+++ b/http-utils/pom.xml
@@ -66,10 +66,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <release>${vespaClients.jdk.releaseVersion}</release>
- <showDeprecation>true</showDeprecation>
- </configuration>
</plugin>
</plugins>
</build>
diff --git a/security-utils/pom.xml b/security-utils/pom.xml
index d4b4bc8d0f6..0a2e1251d6a 100644
--- a/security-utils/pom.xml
+++ b/security-utils/pom.xml
@@ -71,10 +71,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <release>${vespaClients.jdk.releaseVersion}</release>
- <showDeprecation>true</showDeprecation>
- </configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
@@ -89,7 +85,10 @@
</executions>
</plugin>
<plugin>
- <!-- Build with maven-bundle-plugin to avoid depending on jdisc_core to get the correct Import-Packages -->
+ <!--
+ Build with maven-bundle-plugin to avoid depending on jdisc_core to get the correct Import-Packages
+ Jackson and BC compile scope dependencies are not embedded. Packages are instead imported through manifest.
+ -->
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>