Skip to content

Commit 18bad20

Browse files
authored
Version5 OSGi fixes (owlcs#1098)
* owlapi-distribution module changes - update maven-bundle-plugin from v3.2.0 to v5.1.8 - define maven-bundle-plugin version as a property Signed-off-by: Phillip Ross <[email protected]> * owlapi-osgidistribution module changes - fix Import-Packages section in maven-bundle-plugin to surround version ranges with double-quotes Signed-off-by: Phillip Ross <[email protected]> --------- Signed-off-by: Phillip Ross <[email protected]>
1 parent 6feb4af commit 18bad20

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

distribution/pom.xml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
</parent>
1313
<properties>
1414
<inherited.rdf4j.version>${rdf4j.version}</inherited.rdf4j.version>
15+
16+
<maven-bundle-plugin.version>5.1.8</maven-bundle-plugin.version>
1517
</properties>
1618

1719
<!-- NOTE: These dependency declarations are only required to sort this
@@ -72,7 +74,7 @@
7274
<plugin>
7375
<groupId>org.apache.felix</groupId>
7476
<artifactId>maven-bundle-plugin</artifactId>
75-
<version>3.2.0</version>
77+
<version>${maven-bundle-plugin.version}</version>
7678
<extensions>true</extensions>
7779
<configuration>
7880
<instructions>

osgidistribution/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@
174174
!osgi.*,
175175
net.sf.ehcache.*;resolution:=optional,
176176
net.spy.memcached.*;resolution:=optional,
177-
com.google.common.hash;version=[18.0,32);resolution:=optional,
178-
com.google.common.base;version=[18.0,32);resolution:=optional,
179-
com.google.common.collect;version=[18.0,32);resolution:=optional,
177+
com.google.common.hash;version="[18.0,32)";resolution:=optional,
178+
com.google.common.base;version="[18.0,32)";resolution:=optional,
179+
com.google.common.collect;version="[18.0,32)";resolution:=optional,
180180
javax.inject;version="[1.0,2)",
181181
javax.annotation;version=!,
182182
!com.google.appengine.*,

0 commit comments

Comments
 (0)