summaryrefslogtreecommitdiffstats
path: root/security-utils
diff options
context:
space:
mode:
authorHarald Musum <musum@verizonmedia.com>2022-07-12 12:32:58 +0200
committerGitHub <noreply@github.com>2022-07-12 12:32:58 +0200
commit875d290d3477b83cbb063add11621bf6c3b8dcf2 (patch)
treebec7feb6ea7b97781b7d7dd085e7eace96974c0b /security-utils
parentd8a6aa364cf080b2acab0d61372028b0b91514e3 (diff)
Revert "Modules are no longer dependency of JDK8 based clients"
Diffstat (limited to 'security-utils')
-rw-r--r--security-utils/pom.xml39
1 files changed, 29 insertions, 10 deletions
diff --git a/security-utils/pom.xml b/security-utils/pom.xml
index c4e30a9f474..d4b4bc8d0f6 100644
--- a/security-utils/pom.xml
+++ b/security-utils/pom.xml
@@ -9,7 +9,7 @@
<relativePath>../parent/pom.xml</relativePath>
</parent>
<artifactId>security-utils</artifactId>
- <packaging>container-plugin</packaging>
+ <packaging>bundle</packaging>
<version>8-SNAPSHOT</version>
<dependencies>
@@ -20,13 +20,6 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
- <dependency>
- <!-- Needed for bundle-plugin to generate import-package statements in OSGi manifest for javax packages -->
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>jdisc_core</artifactId>
- <version>${project.version}</version>
- <scope>provided</scope>
- </dependency>
<!-- compile scope -->
<dependency>
@@ -78,11 +71,37 @@
<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>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>parse-version</id>
+ <goals>
+ <goal>parse-version</goal>
+ </goals>
+ </execution>
+ </executions>
</plugin>
<plugin>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>bundle-plugin</artifactId>
+ <!-- Build with maven-bundle-plugin to avoid depending on jdisc_core to get the correct Import-Packages -->
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+ <Bundle-Version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</Bundle-Version>
+ <Export-Package>com.yahoo.security.*;version=1.0.0;-noimport:=true</Export-Package>
+ <_nouses>true</_nouses> <!-- Don't include 'uses' directives for package exports -->
+ <_fixupmessages>"Classes found in the wrong directory"</_fixupmessages> <!-- Hide warnings for bouncycastle multi-release jars -->
+ </instructions>
+ </configuration>
</plugin>
</plugins>
</build>