Skip to content

Commit 0dcffc4

Browse files
authored
Merge pull request #50 from rnc/BR1
Update versions.
2 parents c87cc5d + f6b1435 commit 0dcffc4

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

pom.xml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
-->
1818
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1919
<modelVersion>4.0.0</modelVersion>
20-
20+
2121
<parent>
2222
<groupId>org.commonjava</groupId>
2323
<artifactId>commonjava</artifactId>
24-
<version>18</version>
24+
<version>21</version>
2525
</parent>
2626

2727
<groupId>org.commonjava.util</groupId>
@@ -37,21 +37,20 @@
3737
<url>https://github.com/Commonjava/http-testserver</url>
3838
<tag>HEAD</tag>
3939
</scm>
40-
40+
4141
<properties>
4242
<projectOwner>Red Hat, Inc.</projectOwner>
43-
<projectEmail>http://github.com/Commonjava/http-testserver</projectEmail>
43+
<projectEmail>https://github.com/Commonjava/http-testserver</projectEmail>
4444
<javaVersion>11</javaVersion>
45-
<undertowVersion>2.2.26.Final</undertowVersion>
46-
<slf4j.versoin>1.7.25</slf4j.versoin>
45+
<undertowVersion>2.2.38.Final</undertowVersion>
4746
</properties>
4847

4948
<dependencyManagement>
5049
<dependencies>
5150
<dependency>
5251
<groupId>org.commonjava.boms</groupId>
5352
<artifactId>web-commons-bom</artifactId>
54-
<version>29</version>
53+
<version>30</version>
5554
<type>pom</type>
5655
<scope>import</scope>
5756
</dependency>
@@ -72,7 +71,7 @@
7271
</dependency>
7372
</dependencies>
7473
</dependencyManagement>
75-
74+
7675
<dependencies>
7776
<dependency>
7877
<groupId>io.undertow</groupId>
@@ -95,6 +94,10 @@
9594
<groupId>commons-io</groupId>
9695
<artifactId>commons-io</artifactId>
9796
</dependency>
97+
<dependency>
98+
<groupId>org.apache.commons</groupId>
99+
<artifactId>commons-lang3</artifactId>
100+
</dependency>
98101
<dependency>
99102
<groupId>org.slf4j</groupId>
100103
<artifactId>slf4j-api</artifactId>
@@ -107,10 +110,6 @@
107110
<groupId>ch.qos.logback</groupId>
108111
<artifactId>logback-classic</artifactId>
109112
</dependency>
110-
<dependency>
111-
<groupId>commons-lang</groupId>
112-
<artifactId>commons-lang</artifactId>
113-
</dependency>
114113
<dependency>
115114
<groupId>org.apache.httpcomponents</groupId>
116115
<artifactId>httpclient</artifactId>

src/main/java/org/commonjava/test/http/stream/StreamServlet.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@
1616
package org.commonjava.test.http.stream;
1717

1818
import org.apache.commons.io.IOUtils;
19-
import org.apache.commons.lang.StringUtils;
19+
import org.apache.commons.lang3.StringUtils;
2020
import org.commonjava.test.http.common.CommonMethod;
21-
import org.commonjava.test.http.expect.ContentResponse;
2221
import org.slf4j.Logger;
2322
import org.slf4j.LoggerFactory;
2423

0 commit comments

Comments
 (0)