We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f8b137 commit 8637547Copy full SHA for 8637547
spring-boot-integration-tests/spring-boot-integration-tests-embedded-servlet-container/pom.xml
@@ -63,4 +63,26 @@
63
</plugin>
64
</plugins>
65
</build>
66
+ <profiles>
67
+ <profile>
68
+ <id>java9</id>
69
+ <activation>
70
+ <jdk>9</jdk>
71
+ </activation>
72
+ <build>
73
+ <plugins>
74
+ <plugin>
75
+ <groupId>org.apache.maven.plugins</groupId>
76
+ <artifactId>maven-surefire-plugin</artifactId>
77
+ <configuration>
78
+ <excludes>
79
+ <exclude>**/EmbeddedServletContainerJarDevelopmentIntegrationTests.java</exclude>
80
+ <exclude>**/EmbeddedServletContainerWarDevelopmentIntegrationTests.java</exclude>
81
+ </excludes>
82
+ </configuration>
83
+ </plugin>
84
+ </plugins>
85
+ </build>
86
+ </profile>
87
+ </profiles>
88
</project>
0 commit comments