File tree Expand file tree Collapse file tree 1 file changed +39
-1
lines changed Expand file tree Collapse file tree 1 file changed +39
-1
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,47 @@ Java Excel Utils is still an embryonic project. This open source library will co
1010## Documentation
1111The javadocs of all public methods are available. Some examples are also available in the ` samples ` package.
1212
13- ## Minimum Requirements ##
13+ ## Minimum Requirements
1414Java 17 or above.
1515
16+ ## Dependencies
17+ ``` xml
18+ <dependencies >
19+ <dependency >
20+ <groupId >org.apache.poi</groupId >
21+ <artifactId >poi</artifactId >
22+ <version >5.2.3</version >
23+ </dependency >
24+ <dependency >
25+ <groupId >org.apache.poi</groupId >
26+ <artifactId >poi-ooxml</artifactId >
27+ <version >5.2.3</version >
28+ </dependency >
29+ <dependency >
30+ <groupId >org.projectlombok</groupId >
31+ <artifactId >lombok</artifactId >
32+ <version >1.18.24</version >
33+ <scope >provided</scope >
34+ </dependency >
35+ <dependency >
36+ <groupId >commons-beanutils</groupId >
37+ <artifactId >commons-beanutils</artifactId >
38+ <version >1.9.4</version >
39+ </dependency >
40+ <dependency >
41+ <groupId >com.opencsv</groupId >
42+ <artifactId >opencsv</artifactId >
43+ <version >5.7.1</version >
44+ </dependency >
45+ <dependency >
46+ <groupId >org.junit.jupiter</groupId >
47+ <artifactId >junit-jupiter</artifactId >
48+ <version >RELEASE</version >
49+ <scope >test</scope >
50+ </dependency >
51+ </dependencies >
52+ ```
53+
1654## Maven
1755``` xml
1856<dependency >
You can’t perform that action at this time.
0 commit comments