Skip to content

Commit 62c6dd1

Browse files
belpkKoen Pollentier
andauthored
TEXT-233: required OSGi Import-Package version numbers in MANIFEST.MF (#627)
* TEXT-233: required OSGi Import-Package version numbers in MANIFEST.MF * Snapshot now also imports org.apache.commons.lang3.function --------- Co-authored-by: Koen Pollentier <[email protected]>
1 parent fc844c3 commit 62c6dd1

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,20 @@
5252
<commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-text</commons.scmPubUrl>
5353
<commons.scmPubCheckoutDirectory>site-content</commons.scmPubCheckoutDirectory>
5454

55+
<commons.lang3.version>3.17.0</commons.lang3.version>
5556
<commons.bytebuddy.version>1.15.10</commons.bytebuddy.version>
5657
<commons.rng.version>1.6</commons.rng.version>
5758
<japicmp.skip>false</japicmp.skip>
5859
<jmh.version>1.37</jmh.version>
5960

61+
<!-- Apache Felix maven-bundle-plugin -->
62+
<commons.osgi.import>
63+
org.apache.commons.lang3;version="${commons.lang3.version}",
64+
org.apache.commons.lang3.function;version="${commons.lang3.version}",
65+
org.apache.commons.lang3.time;version="${commons.lang3.version}",
66+
*
67+
</commons.osgi.import>
68+
6069
<!-- Commons Release Plugin -->
6170
<!-- Previous version of the component (used for reporting binary compatibility check)-->
6271
<commons.bc.version>1.12.0</commons.bc.version>
@@ -84,7 +93,7 @@
8493
<dependency>
8594
<groupId>org.apache.commons</groupId>
8695
<artifactId>commons-lang3</artifactId>
87-
<version>3.17.0</version>
96+
<version>${commons.lang3.version}</version>
8897
</dependency>
8998
<!-- testing -->
9099
<dependency>

0 commit comments

Comments
 (0)