Skip to content

Commit aba6809

Browse files
committed
Add Apache POI, Commons IO, Commons Text
1 parent a8b0351 commit aba6809

1 file changed

Lines changed: 31 additions & 1 deletion

File tree

pom.xml

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111

1212
<artifactId>pom-scijava</artifactId>
13-
<version>18.1.1-SNAPSHOT</version>
13+
<version>18.2.0-SNAPSHOT</version>
1414
<packaging>pom</packaging>
1515

1616
<name>SciJava Parent POM</name>
@@ -559,6 +559,9 @@
559559

560560
<!-- Third party components -->
561561

562+
<!-- Apache POI - https://poi.apache.org/ -->
563+
<poi.version>3.17</poi.version>
564+
562565
<!-- Batik - https://xmlgraphics.apache.org/batik/ -->
563566
<batik.version>1.9.1</batik.version>
564567
<batik-anim.version>${batik.version}</batik-anim.version>
@@ -593,12 +596,18 @@
593596
<!-- Commons Codec - https://commons.apache.org/proper/commons-codec/ -->
594597
<commons-codec.version>1.11</commons-codec.version>
595598

599+
<!-- Commons IO - https://commons.apache.org/proper/commons-io/ -->
600+
<commons-io.version>2.6</commons-io.version>
601+
596602
<!-- Commons Lang - https://commons.apache.org/proper/commons-lang/ -->
597603
<commons-lang3.version>3.7</commons-lang3.version>
598604

599605
<!-- Commons Math - https://commons.apache.org/proper/commons-math/ -->
600606
<commons-math3.version>3.6.1</commons-math3.version>
601607

608+
<!-- Commons Text - https://commons.apache.org/proper/commons-text/ -->
609+
<commons-text.version>1.2</commons-text.version>
610+
602611
<!-- Gson - https://code.google.com/p/google-gson/ -->
603612
<gson.version>2.8.2</gson.version>
604613

@@ -1958,6 +1967,13 @@
19581967

19591968
<!-- Third party components -->
19601969

1970+
<!-- Apache POI - https://poi.apache.org/ -->
1971+
<dependency>
1972+
<groupId>org.apache.poi</groupId>
1973+
<artifactId>poi</artifactId>
1974+
<version>${poi.version}</version>
1975+
</dependency>
1976+
19611977
<!-- Batik - https://xmlgraphics.apache.org/batik/ -->
19621978
<dependency>
19631979
<groupId>org.apache.xmlgraphics</groupId>
@@ -2217,6 +2233,13 @@
22172233
<version>${commons-codec.version}</version>
22182234
</dependency>
22192235

2236+
<!-- Commons IO - https://commons.apache.org/proper/commons-io/ -->
2237+
<dependency>
2238+
<groupId>commons-io</groupId>
2239+
<artifactId>commons-io</artifactId>
2240+
<version>${commons-io.version}</version>
2241+
</dependency>
2242+
22202243
<!-- Commons Lang - https://commons.apache.org/proper/commons-lang/ -->
22212244
<dependency>
22222245
<groupId>org.apache.commons</groupId>
@@ -2231,6 +2254,13 @@
22312254
<version>${commons-math3.version}</version>
22322255
</dependency>
22332256

2257+
<!-- Commons Text - https://commons.apache.org/proper/commons-text/ -->
2258+
<dependency>
2259+
<groupId>org.apache.commons</groupId>
2260+
<artifactId>commons-text</artifactId>
2261+
<version>${commons-text.version}</version>
2262+
</dependency>
2263+
22342264
<!-- Gson - https://code.google.com/p/google-gson/ -->
22352265
<dependency>
22362266
<groupId>com.google.code.gson</groupId>

0 commit comments

Comments
 (0)