Skip to content

Commit 984fe91

Browse files
authored
[JAVA-41791] Fix integration tests in the maven-integration-test (#18074)
1 parent 3722641 commit 984fe91

File tree

1 file changed

+12
-2
lines changed
  • maven-modules/maven-integration-test

1 file changed

+12
-2
lines changed

maven-modules/maven-integration-test/pom.xml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>maven-integration-test</artifactId>
77
<version>0.0.1-SNAPSHOT</version>
@@ -31,6 +31,11 @@
3131
<artifactId>jakarta.xml.bind-api</artifactId>
3232
<version>${jakarta.xml.bind-api.version}</version>
3333
</dependency>
34+
<dependency>
35+
<groupId>org.apache.tomcat</groupId>
36+
<artifactId>tomcat-catalina</artifactId>
37+
<version>${tomcat-catalina.version}</version>
38+
</dependency>
3439
</dependencies>
3540

3641
<build>
@@ -45,6 +50,10 @@
4550
</httpConnector>
4651
<stopKey>quit</stopKey>
4752
<stopPort>9000</stopPort>
53+
<webApp>
54+
<webInfIncludeJarPattern>^$</webInfIncludeJarPattern>
55+
<containerIncludeJarPattern>^$</containerIncludeJarPattern>
56+
</webApp>
4857
</configuration>
4958
<executions>
5059
<execution>
@@ -282,6 +291,7 @@
282291
<maven.clean.version>3.0.0</maven.clean.version>
283292
<maven.build.helper.version>3.0.0</maven.build.helper.version>
284293
<jetty.version>11.0.24</jetty.version>
294+
<tomcat-catalina.version>10.1.33</tomcat-catalina.version>
285295
<jersey.version>3.1.9</jersey.version>
286296
<jakarta.xml.bind-api.version>3.0.1</jakarta.xml.bind-api.version>
287297
</properties>

0 commit comments

Comments
 (0)