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 4caeed2 commit eddf273Copy full SHA for eddf273
spring-boot-samples/pom.xml
@@ -259,4 +259,26 @@
259
</snapshots>
260
</pluginRepository>
261
</pluginRepositories>
262
+ <profiles>
263
+ <profile>
264
+ <id>java9</id>
265
+ <activation>
266
+ <jdk>9</jdk>
267
+ </activation>
268
+ <properties>
269
+ <aspectj.version>1.9.0.BETA-7</aspectj.version>
270
+ </properties>
271
+ <build>
272
+ <plugins>
273
+ <plugin>
274
+ <groupId>org.apache.maven.plugins</groupId>
275
+ <artifactId>maven-surefire-plugin</artifactId>
276
+ <configuration>
277
+ <argLine>--add-modules java.base,java.xml.bind</argLine>
278
+ </configuration>
279
+ </plugin>
280
+ </plugins>
281
+ </build>
282
+ </profile>
283
+ </profiles>
284
</project>
0 commit comments