Skip to content

Commit 59ab05d

Browse files
alvin577austriaGaetanoPiazzollaanuragkumawat
authored
Java 38804 (#17631)
* JAVA-38804 | moving apache-poi (#17482) * JAVA-38804 | moving TO apache-poi * JAVA-38804 | fixed integration test * JAVA-38804 | moving "cellstyle" from apache-poi to apache-poi-4 new module * JAVA-38804 | Moving "excel merger" from apache-poi to apache-poi-4 new module * JAVA-38804 | Moving "read formula" from apache-poi to apache-poi-4 new module * JAVA-38804 | Moving "read value" from apache-poi to apache-poi-4 new module * JAVA-38804 | Moving "borders" from apache-poi to apache-poi-3 * JAVA-38804 | Moving "insert row" from apache-poi to apache-poi-3 * JAVA-38804 | Moving "food-info" from apache-poi to apache-poi-3 * JAVA-38804 | fixed integration test * JAVA-38804 | Moving "multiline" from apache-poi to apache-poi-3 * Java 38804 moving stuff (#17500) * JAVA-38804 | moving TO apache-poi * JAVA-38804 | fixed integration test * JAVA-38804 | moving "cellstyle" from apache-poi to apache-poi-4 new module * JAVA-38804 | Moving "excel merger" from apache-poi to apache-poi-4 new module * JAVA-38804 | Moving "read formula" from apache-poi to apache-poi-4 new module * JAVA-38804 | Moving "read value" from apache-poi to apache-poi-4 new module * JAVA-38804 | Moving "borders" from apache-poi to apache-poi-3 * JAVA-38804 | Moving "insert row" from apache-poi to apache-poi-3 * JAVA-38804 | Moving "food-info" from apache-poi to apache-poi-3 * JAVA-38804 | fixed integration test * JAVA-38804 | Moving "multiline" from apache-poi to apache-poi-3 * JAVA-38804 | Fixing integration test --------- Co-authored-by: Gaetano Piazzolla <[email protected]> * JAVA-38804 Moving article links on Github - apache-poi (#17611) * Disabled failing tests --------- Co-authored-by: Gaetano Piazzolla <[email protected]> Co-authored-by: anuragkumawat <[email protected]>
1 parent 68ad2a6 commit 59ab05d

File tree

51 files changed

+438
-370
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+438
-370
lines changed

apache-poi-2/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ This module contains articles about Apache POI.
77
- [Adding a Column to an Excel Sheet Using Apache POI](https://www.baeldung.com/java-excel-add-column)
88
- [Add an Image to a Cell in an Excel File With Java](https://www.baeldung.com/java-add-image-excel)
99
- [Numeric Format Using POI](https://www.baeldung.com/apache-poi-numeric-format)
10-
- [Microsoft Word Processing in Java with Apache POI](https://www.baeldung.com/java-microsoft-word-with-apache-poi)
1110
- [Creating a MS PowerPoint Presentation in Java](https://www.baeldung.com/apache-poi-slideshow)
1211
- [Finding the Last Row in an Excel Spreadsheet From Java](https://www.baeldung.com/java-excel-find-last-row)
1312
- [Setting Formulas in Excel with Apache POI](https://www.baeldung.com/java-apache-poi-set-formulas)

apache-poi-3/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ This module contains articles about Apache POI.
44

55
### Relevant Articles:
66

7-
- [How To Convert Excel Data Into List Of Java Objects](https://www.baeldung.com/java-convert-excel-data-into-list)
8-
- [Expand Columns with Apache POI](https://www.baeldung.com/java-apache-poi-expand-columns)
97
- [Apply Bold Text Style for an Entire Row Using Apache POI](https://www.baeldung.com/appache-poi-apply-bold-text-style-entire-row)
108
- [Using Apache POI to Extract Column Names From Excel](https://www.baeldung.com/apache-poi-extract-column-names-excel)
119
- [Generate MS Word Documents Using poi-tl Template](https://www.baeldung.com/poi-tl-ms-word)
10+
- [Add Borders to Excel Cells With Apache POI](https://www.baeldung.com/apache-poi-add-borders)
11+
- [Insert a Row in Excel Using Apache POI](https://www.baeldung.com/apache-poi-insert-excel-row)
12+
1213
- More articles: [[<-- prev]](../apache-poi-2)

apache-poi-3/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@
2424
<artifactId>poi-scratchpad</artifactId>
2525
<version>${poi.version}</version>
2626
</dependency>
27-
<dependency>
28-
<groupId>com.github.ozlerhakan</groupId>
29-
<artifactId>poiji</artifactId>
30-
<version>${poiji.version}</version>
31-
</dependency>
3227
<dependency>
3328
<groupId>org.apache.poi</groupId>
3429
<artifactId>poi</artifactId>
@@ -84,7 +79,6 @@
8479
<properties>
8580
<poi.version>5.2.5</poi.version>
8681
<poi-ooxml-schemas.version>4.1.2</poi-ooxml-schemas.version>
87-
<poiji.version>4.2.0</poiji.version>
8882
<xmlbeans.version>5.2.0</xmlbeans.version>
8983
<fastexcel.version>0.17.0</fastexcel.version>
9084
<jxl.version>2.6.12</jxl.version>

apache-poi/src/main/java/com/baeldung/poi/excel/multilinetext/MultilineText.java renamed to apache-poi-3/src/main/java/com/baeldung/poi/excel/multilinetext/MultilineText.java

File renamed without changes.

apache-poi/src/main/resources/com/baeldung/poi/excel/multilinetext/MultilineTextTest.xlsx renamed to apache-poi-3/src/main/resources/MultilineTextTest.xlsx

File renamed without changes.
-2 Bytes
Binary file not shown.

apache-poi/src/test/java/com/baeldung/poi/excel/insert/ExcelInsertRowUnitTest.java renamed to apache-poi-3/src/test/java/com/baeldung/poi/excel/insert/ExcelInsertRowUnitTest.java

File renamed without changes.

apache-poi/src/test/java/com/baeldung/poi/excel/multilinetext/MultilineTextUnitTest.java renamed to apache-poi-3/src/test/java/com/baeldung/poi/excel/insert/multilinetext/MultilineTextUnitTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.baeldung.poi.excel.multilinetext;
1+
package com.baeldung.poi.excel.insert.multilinetext;
22

33
import static org.junit.Assert.assertEquals;
44
import static org.junit.Assert.assertTrue;
@@ -10,6 +10,7 @@
1010
import java.net.URISyntaxException;
1111
import java.nio.file.Paths;
1212

13+
import com.baeldung.poi.excel.multilinetext.MultilineText;
1314
import org.apache.poi.ss.usermodel.Cell;
1415
import org.apache.poi.ss.usermodel.DataFormatter;
1516
import org.apache.poi.ss.usermodel.Row;
@@ -20,7 +21,7 @@
2021
import org.junit.Test;
2122

2223
public class MultilineTextUnitTest {
23-
private static String FILE_NAME = "com/baeldung/poi/excel/multilinetext/MultilineTextTest.xlsx";
24+
private static String FILE_NAME = "MultilineTextTest.xlsx";
2425
private static final String NEW_FILE_NAME = "MultilineTextTest_output.xlsx";
2526
private static final int STRING_ROW_INDEX = 1;
2627
private static final int STRING_CELL_INDEX = 0;
6.26 KB
Binary file not shown.

0 commit comments

Comments
 (0)