Skip to content

Commit 054e039

Browse files
authored
[JAVA-31579] Update Apache Poi to latest version (#15973)
1 parent aefd833 commit 054e039

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

apache-poi-2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ This module contains articles about Apache POI.
1414
- [Set the Date Format Using Apache POI](https://www.baeldung.com/java-apache-poi-date-format)
1515
- [Replacing Variables in a Document Template with Java](https://www.baeldung.com/java-replace-pattern-word-document-doc-docx)
1616
- [Lock Header Rows With Apache POI](https://www.baeldung.com/java-apache-poi-lock-header-rows)
17-
- More articles: [[<-- prev]](../apache-poi)
17+
- More articles: [[<-- prev]](../apache-poi)[[next -->]](../apache-poi-3)

apache-poi-2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</dependencies>
2828

2929
<properties>
30-
<poi.version>5.2.3</poi.version>
30+
<poi.version>5.2.5</poi.version>
3131
</properties>
3232

3333
</project>

apache-poi-3/README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## Relevant Articles
1+
## Apache POI
2+
3+
This module contains articles about Apache POI.
4+
5+
### Relevant Articles:
6+
27
- [How To Convert Excel Data Into List Of Java Objects](https://www.baeldung.com/java-convert-excel-data-into-list)
38
- [Expand Columns with Apache POI](https://www.baeldung.com/java-apache-poi-expand-columns)
49
- [Apply Bold Text Style for an Entire Row Using Apache POI](https://www.baeldung.com/appache-poi-apply-bold-text-style-entire-row)
10+
- More articles: [[<-- prev]](../apache-poi-2)

apache-poi-3/pom.xml

+8-14
Original file line numberDiff line numberDiff line change
@@ -24,50 +24,41 @@
2424
<artifactId>poi-scratchpad</artifactId>
2525
<version>${poi.version}</version>
2626
</dependency>
27-
<!-- https://mvnrepository.com/artifact/com.github.ozlerhakan/poiji -->
2827
<dependency>
2928
<groupId>com.github.ozlerhakan</groupId>
3029
<artifactId>poiji</artifactId>
3130
<version>${poiji.version}</version>
3231
</dependency>
33-
34-
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi/5.2.3 -->
3532
<dependency>
3633
<groupId>org.apache.poi</groupId>
3734
<artifactId>poi</artifactId>
3835
<version>${poi.version}</version>
3936
</dependency>
40-
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas/4.1.2 -->
4137
<dependency>
4238
<groupId>org.apache.poi</groupId>
4339
<artifactId>poi-ooxml-schemas</artifactId>
44-
<version>4.1.2</version>
40+
<version>${poi-ooxml-schemas.version}</version>
4541
</dependency>
46-
<!-- https://mvnrepository.com/artifact/org.apache.xmlbeans/xmlbeans/5.1.1 -->
4742
<dependency>
4843
<groupId>org.apache.xmlbeans</groupId>
4944
<artifactId>xmlbeans</artifactId>
50-
<version>5.1.1</version>
45+
<version>${xmlbeans.version}</version>
5146
</dependency>
52-
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
5347
<dependency>
5448
<groupId>org.apache.commons</groupId>
5549
<artifactId>commons-collections4</artifactId>
56-
<version>4.4</version>
50+
<version>${commons-collections4.version}</version>
5751
</dependency>
58-
<!-- https://mvnrepository.com/artifact/org.dhatim/fastexcel/0.15.7 -->
5952
<dependency>
6053
<groupId>org.dhatim</groupId>
6154
<artifactId>fastexcel</artifactId>
6255
<version>${fastexcel.version}</version>
6356
</dependency>
64-
<!-- https://mvnrepository.com/artifact/org.dhatim/fastexcel-reader/0.15.7 -->
6557
<dependency>
6658
<groupId>org.dhatim</groupId>
6759
<artifactId>fastexcel-reader</artifactId>
6860
<version>${fastexcel.version}</version>
6961
</dependency>
70-
<!-- https://mvnrepository.com/artifact/net.sourceforge.jexcelapi/jxl/2.6.12 -->
7162
<dependency>
7263
<groupId>net.sourceforge.jexcelapi</groupId>
7364
<artifactId>jxl</artifactId>
@@ -77,8 +68,11 @@
7768

7869
<properties>
7970
<poi.version>5.2.5</poi.version>
80-
<poiji.version>4.1.1</poiji.version>
81-
<fastexcel.version>0.15.7</fastexcel.version>
71+
<poi-ooxml-schemas.version>4.1.2</poi-ooxml-schemas.version>
72+
<poiji.version>4.2.0</poiji.version>
73+
<xmlbeans.version>5.2.0</xmlbeans.version>
74+
<commons-collections4.version>4.4</commons-collections4.version>
75+
<fastexcel.version>0.17.0</fastexcel.version>
8276
<jxl.version>2.6.12</jxl.version>
8377
</properties>
8478

apache-poi/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@
6060
</build>
6161

6262
<properties>
63-
<poi.version>5.2.0</poi.version>
64-
<jexcel.version>1.0.6</jexcel.version>
65-
<fastexcel.version>0.15.3</fastexcel.version>
66-
<maven.resources.plugin.version>3.2.0</maven.resources.plugin.version>
63+
<poi.version>5.2.5</poi.version>
64+
<jexcel.version>1.0.9</jexcel.version>
65+
<fastexcel.version>0.17.0</fastexcel.version>
66+
<maven.resources.plugin.version>3.3.1</maven.resources.plugin.version>
6767
</properties>
6868

6969
</project>

0 commit comments

Comments
 (0)