File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed
test/java/com/baeldung/poi/excel/cellstyle Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 32
32
</dependency >
33
33
</dependencies >
34
34
35
+ <build >
36
+ <plugins >
37
+ <plugin >
38
+ <groupId >org.apache.maven.plugins</groupId >
39
+ <artifactId >maven-resources-plugin</artifactId >
40
+ <version >${maven.resources.plugin.version} </version >
41
+ <configuration >
42
+ <encoding >UTF-8</encoding >
43
+ <nonFilteredFileExtensions >
44
+ <nonFilteredFileExtension >xlsx</nonFilteredFileExtension >
45
+ <nonFilteredFileExtension >xls</nonFilteredFileExtension >
46
+ </nonFilteredFileExtensions >
47
+ </configuration >
48
+ </plugin >
49
+ </plugins >
50
+ </build >
51
+
35
52
<properties >
36
53
<poi .version>5.2.0</poi .version>
37
54
<jexcel .version>1.0.6</jexcel .version>
55
+ <maven .resources.plugin.version>3.2.0</maven .resources.plugin.version>
38
56
</properties >
39
57
40
58
</project >
Original file line number Diff line number Diff line change 12
12
import static org .junit .Assert .assertEquals ;
13
13
14
14
public class CellBorderHandlerUnitTest {
15
- private static final String FILE_NAME = "cellstyle/CellStyleHandlerTest .xlsx" ;
15
+ private static final String FILE_NAME = "cellstyle/CellStyleBorderHandlerTest .xlsx" ;
16
16
private static final int SHEET_INDEX = 0 ;
17
17
18
18
private static CellBordersHandler cellBordersHandler ;
You can’t perform that action at this time.
0 commit comments