Skip to content

Commit 738dfd4

Browse files
committed
Add maven property to fix ci failure
1 parent 6befec5 commit 738dfd4

File tree

1 file changed

+22
-0
lines changed
  • sentinel-adapter/sentinel-spring-cloud-gateway-v6x-adapter

1 file changed

+22
-0
lines changed

sentinel-adapter/sentinel-spring-cloud-gateway-v6x-adapter/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<spring.cloud.gateway.version>4.3.0</spring.cloud.gateway.version>
1919
<spring.boot.version>3.5.0</spring.boot.version>
2020
<spring.version>6.2.7</spring.version>
21+
<skip.spring.v6x.test>false</skip.spring.v6x.test>
2122
</properties>
2223

2324
<dependencies>
@@ -79,4 +80,25 @@
7980
</dependency>
8081
</dependencies>
8182

83+
<build>
84+
<plugins>
85+
<plugin>
86+
<groupId>org.apache.maven.plugins</groupId>
87+
<artifactId>maven-surefire-plugin</artifactId>
88+
<version>${maven.surefire.version}</version>
89+
<dependencies>
90+
<dependency>
91+
<groupId>org.apache.maven.surefire</groupId>
92+
<artifactId>surefire-junit47</artifactId>
93+
<version>3.2.5</version>
94+
</dependency>
95+
</dependencies>
96+
<configuration>
97+
<skipTests>${skip.spring.v6x.test}</skipTests>
98+
</configuration>
99+
</plugin>
100+
</plugins>
101+
</build>
102+
103+
82104
</project>

0 commit comments

Comments
 (0)