30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From a10847e2a25cb8a11bbf9e1bdeba2fa887fa4b5c Mon Sep 17 00:00:00 2001
|
|
From: chengzihan2 <chengzihan1111@163.com>
|
|
Date: Tue, 1 Sep 2020 11:36:01 +0800
|
|
Subject: [PATCH] xmlrpc server addosgimanifest
|
|
|
|
---
|
|
server/pom.xml | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/server/pom.xml b/server/pom.xml
|
|
index 01288c8..05a6230 100644
|
|
--- a/server/pom.xml
|
|
+++ b/server/pom.xml
|
|
@@ -48,6 +48,12 @@
|
|
<Implementation-Vendor-Id>org.apache</Implementation-Vendor-Id>
|
|
<Implementation-Vendor>Apache Software Foundation</Implementation-Vendor>
|
|
<Implementation-Version>${project.version}</Implementation-Version>
|
|
+ <Bundle-ManifestVersion>1</Bundle-ManifestVersion>
|
|
+ <Bundle-Name>%Bundle-Name</Bundle-Name>
|
|
+ <Bundle-SymbolicName>org.apache.xmlrpc.server</Bundle-SymbolicName>
|
|
+ <Bundle-Version>${project.version}</Bundle-Version>
|
|
+ <Require-Bundle>org.apache.xmlrpc.common</Require-Bundle>
|
|
+ <Export-Package>org.apache.xmlrpc.server,org.apache.xmlrpc.webserver</Export-Package>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
--
|
|
2.23.0
|
|
|