Skip to content

Commit 73f31d7

Browse files
authored
Update README.md
1 parent d1e3223 commit 73f31d7

File tree

1 file changed

+39
-1
lines changed

1 file changed

+39
-1
lines changed

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,47 @@ Java Excel Utils is still an embryonic project. This open source library will co
1010
## Documentation
1111
The javadocs of all public methods are available. Some examples are also available in the `samples` package.
1212

13-
## Minimum Requirements ##
13+
## Minimum Requirements
1414
Java 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>

0 commit comments

Comments
 (0)