Skip to content

Commit d27aba2

Browse files
authored
[JAVA-46179] Fix integration tests in the spring-boot-3 module (#18563)
1 parent bb7282d commit d27aba2

File tree

1 file changed

+20
-2
lines changed
  • spring-boot-modules/spring-boot-3

1 file changed

+20
-2
lines changed

spring-boot-modules/spring-boot-3/pom.xml

Lines changed: 20 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 https://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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>spring-boot-3</artifactId>
77
<version>0.0.1-SNAPSHOT</version>
@@ -109,6 +109,24 @@
109109
</plugins>
110110
</build>
111111
</profile>
112+
113+
<profile>
114+
<id>integration</id>
115+
<build>
116+
<plugins>
117+
<plugin>
118+
<groupId>org.apache.maven.plugins</groupId>
119+
<artifactId>maven-surefire-plugin</artifactId>
120+
<configuration>
121+
<!-- Force sequential test execution -->
122+
<parallel>none</parallel>
123+
<forkCount>1</forkCount>
124+
<reuseForks>false</reuseForks>
125+
</configuration>
126+
</plugin>
127+
</plugins>
128+
</build>
129+
</profile>
112130
</profiles>
113131

114132
<build>

0 commit comments

Comments
 (0)