Skip to content

Commit

Permalink
[JENKINS-73170] Upgrade Commons FileUpload from 1.5 to 2.0.0-M2 (#542)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored May 16, 2024
1 parent fc1ca4b commit d250086
Show file tree
Hide file tree
Showing 8 changed files with 698 additions and 29 deletions.
22 changes: 16 additions & 6 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
<artifactId>stapler</artifactId>
<name>Stapler</name>
<description>Stapler HTTP request handling engine</description>

<properties>
<commons-fileupload2.version>2.0.0-M2</commons-fileupload2.version>
</properties>

<dependencies>
<dependency>
<groupId>com.jcraft</groupId>
Expand Down Expand Up @@ -38,12 +43,6 @@
<artifactId>commons-discovery</artifactId>
<version>0.5</version>
</dependency>
<dependency>
<!-- perhaps mark this dependency optional? -->
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand All @@ -63,6 +62,17 @@
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
<!-- perhaps mark these dependencies optional? -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-fileupload2-core</artifactId>
<version>${commons-fileupload2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-fileupload2-javax</artifactId>
<version>${commons-fileupload2.version}</version>
</dependency>
<dependency>
<!--
To allow stapler to be used from Groovy, code, we have a bit of tooling
Expand Down
Loading

0 comments on commit d250086

Please sign in to comment.