28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From 93df8b4732f0fe801db62f268da4de0e3a87f993 Mon Sep 17 00:00:00 2001
|
|
From: Michael Simacek <msimacek@redhat.com>
|
|
Date: Tue, 14 Jul 2015 11:21:21 +0200
|
|
Subject: [PATCH 2/2] Add OSGi attributes
|
|
|
|
---
|
|
build.xml | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/build.xml b/build.xml
|
|
index 36b922b..ba0585f 100644
|
|
--- a/build.xml
|
|
+++ b/build.xml
|
|
@@ -116,6 +116,10 @@
|
|
<jar jarfile='${jar.file}'>
|
|
<manifest>
|
|
<attribute name="Built-By" value="${author}"/>
|
|
+ <attribute name="Bundle-SymbolicName" value="${package}" />
|
|
+ <attribute name="Bundle-Version" value="${version}" />
|
|
+ <attribute name="Export-Package" value="org.cyberneko.html,org.cyberneko.html.filters,org.cyberneko.html.parsers,org.cyberneko.html.xercesbridge" />
|
|
+ <attribute name="Import-Package" value="org.apache.xerces.util,org.apache.xerces.xni,org.apache.xerces.xni.parser,org.apache.xerces.impl" />
|
|
<section name="org/cyberneko/html/">
|
|
<attribute name="Specification-Title" value="Hyper-Text Markup Language (HTML)" />
|
|
<attribute name="Specification-Version" value="4.01" />
|
|
--
|
|
2.36.0
|
|
|