Skip to content

Commit c69003b

Browse files
committed
CSV-314: required OSGi Import-Package version numbers in MANIFEST.MF
1 parent b351ba8 commit c69003b

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

pom.xml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@
5050
<dependency>
5151
<groupId>commons-io</groupId>
5252
<artifactId>commons-io</artifactId>
53-
<version>2.17.0</version>
53+
<version>${commons.io.version}</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>commons-codec</groupId>
5757
<artifactId>commons-codec</artifactId>
58-
<version>1.17.1</version>
58+
<version>${commons.codec.version}</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.apache.commons</groupId>
@@ -185,6 +185,21 @@
185185
<japicmp.skip>false</japicmp.skip>
186186
<commons.release.isDistModule>true</commons.release.isDistModule>
187187
<project.build.outputTimestamp>2024-09-25T02:03:48Z</project.build.outputTimestamp>
188+
189+
<commons.codec.version>1.17.1</commons.codec.version>
190+
<commons.io.version>2.17.0</commons.io.version>
191+
192+
<!-- Apache Felix maven-bundle-plugin -->
193+
<commons.osgi.import>
194+
org.apache.commons.codec.binary;version="${commons.codec.version}",
195+
org.apache.commons.io;version="${commons.io.version}",
196+
org.apache.commons.io.build;version="${commons.io.version}",
197+
org.apache.commons.io.function;version="${commons.io.version}",
198+
org.apache.commons.io.input;version="${commons.io.version}",
199+
org.apache.commons.io.output;version="${commons.io.version}",
200+
*
201+
</commons.osgi.import>
202+
188203
<!-- JaCoCo: Don't make code coverage worse than: -->
189204
<commons.jacoco.haltOnFailure>true</commons.jacoco.haltOnFailure>
190205
<commons.jacoco.classRatio>1.00</commons.jacoco.classRatio>

0 commit comments

Comments
 (0)