This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git
The following commit(s) were added to refs/heads/master by this push:
new e6c99cd Update README.md
e6c99cd is described below
commit e6c99cd1b48542c830a4880c725f9244f0dce820
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jun 6 22:20:27 2023 -0400
Update README.md
---
README.md | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 28bbe5e..5c450ae 100644
--- a/README.md
+++ b/README.md
@@ -81,7 +81,12 @@ The upcoming version 2.0.0 will be:
```xml
<dependency>
<groupId>org.apache.commons</groupId>
- <artifactId>commons-fileupload2</artifactId>
+ <artifactId>commons-fileupload2-jakarta</artifactId>
+ <version>2.0.0</version>
+</dependency>
+<dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-fileupload2-javax</artifactId>
<version>2.0.0</version>
</dependency>
```
@@ -91,7 +96,12 @@ You can experiment today by building from git master or
using a snapshot build:
```xml
<dependency>
<groupId>org.apache.commons</groupId>
- <artifactId>commons-fileupload2</artifactId>
+ <artifactId>commons-fileupload2-jakarta</artifactId>
+ <version>2.0.0-SNAPSHOT</version>
+</dependency>
+<dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-fileupload2-javax</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
```