Skip to content

Commit 52c3e22

Browse files
committed
Bump undertow to 2.2.26.Final
1 parent d28d38e commit 52c3e22

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-4
lines changed

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# build
2+
*.tar.gz
3+
dependency-reduced-pom.xml
4+
scratch
5+
target
6+
7+
# eclipse
8+
.classpath
9+
.project
10+
.settings
11+
12+
# idea
13+
.idea
14+
*.iml
15+
*.iws
16+
*.ipr
17+
18+
# mac
19+
*.DS_Store
20+
21+
22+
*.dat

pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
<parent>
2222
<groupId>org.commonjava</groupId>
2323
<artifactId>commonjava</artifactId>
24-
<version>11</version>
24+
<version>18</version>
2525
</parent>
2626

2727
<groupId>org.commonjava.util</groupId>
2828
<artifactId>http-testserver</artifactId>
2929
<version>1.5-SNAPSHOT</version>
3030

3131
<name>http-testserver</name>
32-
<inceptionYear>2015</inceptionYear>
32+
<inceptionYear>2015-2022</inceptionYear>
3333

3434
<scm>
3535
<connection>scm:git:https://github.com/Commonjava/http-testserver.git</connection>
@@ -42,7 +42,7 @@
4242
<projectOwner>Red Hat, Inc.</projectOwner>
4343
<projectEmail>http://github.com/Commonjava/http-testserver</projectEmail>
4444
<javaVersion>11</javaVersion>
45-
<undertowVersion>1.1.2.Final</undertowVersion>
45+
<undertowVersion>2.2.26.Final</undertowVersion>
4646
<slf4j.versoin>1.7.25</slf4j.versoin>
4747
</properties>
4848

@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>org.commonjava.boms</groupId>
5353
<artifactId>web-commons-bom</artifactId>
54-
<version>16</version>
54+
<version>26</version>
5555
<type>pom</type>
5656
<scope>import</scope>
5757
</dependency>
@@ -65,6 +65,11 @@
6565
<artifactId>undertow-servlet</artifactId>
6666
<version>${undertowVersion}</version>
6767
</dependency>
68+
<dependency>
69+
<groupId>org.jboss.logging</groupId>
70+
<artifactId>jboss-logging</artifactId>
71+
<version>3.4.0.Final</version>
72+
</dependency>
6873
</dependencies>
6974
</dependencyManagement>
7075

0 commit comments

Comments
 (0)