We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a9ea05 commit fcd0198Copy full SHA for fcd0198
2 files changed
pom.xml
@@ -468,6 +468,7 @@
468
<module>spring-5-reactive-client</module>
469
<module>spring-5-mvc</module>
470
<module>spring-5-security</module>
471
+ <module>spring-5-reactive-oauth</module>
472
<module>spring-activiti</module>
473
<module>spring-akka</module>
474
<module>spring-amqp</module>
spring-5-reactive-oauth/pom.xml
@@ -56,4 +56,22 @@
56
</dependency>
57
</dependencies>
58
59
+ <build>
60
+ <plugins>
61
+
62
+ <plugin>
63
+ <groupId>org.apache.maven.plugins</groupId>
64
+ <artifactId>maven-surefire-plugin</artifactId>
65
+ <version>2.20.1</version>
66
+ <configuration>
67
+ <testFailureIgnore>true</testFailureIgnore>
68
+ <excludes>
69
+ <exclude>**/*IntegrationTest.java</exclude>
70
+ </excludes>
71
+ </configuration>
72
+ </plugin>
73
74
+ </plugins>
75
+ </build>
76
77
</project>
0 commit comments