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 5ba2906 commit 75dbe5cCopy full SHA for 75dbe5c
spring-boot-samples/spring-boot-sample-webservices/pom.xml
@@ -51,4 +51,23 @@
51
</plugin>
52
</plugins>
53
</build>
54
+ <profiles>
55
+ <profile>
56
+ <id>java9</id>
57
+ <activation>
58
+ <jdk>9</jdk>
59
+ </activation>
60
+ <build>
61
+ <plugins>
62
+ <plugin>
63
+ <groupId>org.apache.maven.plugins</groupId>
64
+ <artifactId>maven-surefire-plugin</artifactId>
65
+ <configuration>
66
+ <argLine>--add-modules java.base,java.xml.ws</argLine>
67
+ </configuration>
68
+ </plugin>
69
+ </plugins>
70
+ </build>
71
+ </profile>
72
+ </profiles>
73
</project>
0 commit comments