|
10 | 10 | </parent> |
11 | 11 |
|
12 | 12 | <artifactId>pom-scijava</artifactId> |
13 | | - <version>18.1.1-SNAPSHOT</version> |
| 13 | + <version>18.2.0-SNAPSHOT</version> |
14 | 14 | <packaging>pom</packaging> |
15 | 15 |
|
16 | 16 | <name>SciJava Parent POM</name> |
|
559 | 559 |
|
560 | 560 | <!-- Third party components --> |
561 | 561 |
|
| 562 | + <!-- Apache POI - https://poi.apache.org/ --> |
| 563 | + <poi.version>3.17</poi.version> |
| 564 | + |
562 | 565 | <!-- Batik - https://xmlgraphics.apache.org/batik/ --> |
563 | 566 | <batik.version>1.9.1</batik.version> |
564 | 567 | <batik-anim.version>${batik.version}</batik-anim.version> |
|
593 | 596 | <!-- Commons Codec - https://commons.apache.org/proper/commons-codec/ --> |
594 | 597 | <commons-codec.version>1.11</commons-codec.version> |
595 | 598 |
|
| 599 | + <!-- Commons IO - https://commons.apache.org/proper/commons-io/ --> |
| 600 | + <commons-io.version>2.6</commons-io.version> |
| 601 | + |
596 | 602 | <!-- Commons Lang - https://commons.apache.org/proper/commons-lang/ --> |
597 | 603 | <commons-lang3.version>3.7</commons-lang3.version> |
598 | 604 |
|
599 | 605 | <!-- Commons Math - https://commons.apache.org/proper/commons-math/ --> |
600 | 606 | <commons-math3.version>3.6.1</commons-math3.version> |
601 | 607 |
|
| 608 | + <!-- Commons Text - https://commons.apache.org/proper/commons-text/ --> |
| 609 | + <commons-text.version>1.2</commons-text.version> |
| 610 | + |
602 | 611 | <!-- Gson - https://code.google.com/p/google-gson/ --> |
603 | 612 | <gson.version>2.8.2</gson.version> |
604 | 613 |
|
|
1958 | 1967 |
|
1959 | 1968 | <!-- Third party components --> |
1960 | 1969 |
|
| 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 | + |
1961 | 1977 | <!-- Batik - https://xmlgraphics.apache.org/batik/ --> |
1962 | 1978 | <dependency> |
1963 | 1979 | <groupId>org.apache.xmlgraphics</groupId> |
|
2217 | 2233 | <version>${commons-codec.version}</version> |
2218 | 2234 | </dependency> |
2219 | 2235 |
|
| 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 | + |
2220 | 2243 | <!-- Commons Lang - https://commons.apache.org/proper/commons-lang/ --> |
2221 | 2244 | <dependency> |
2222 | 2245 | <groupId>org.apache.commons</groupId> |
|
2231 | 2254 | <version>${commons-math3.version}</version> |
2232 | 2255 | </dependency> |
2233 | 2256 |
|
| 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 | + |
2234 | 2264 | <!-- Gson - https://code.google.com/p/google-gson/ --> |
2235 | 2265 | <dependency> |
2236 | 2266 | <groupId>com.google.code.gson</groupId> |
|
0 commit comments