Skip to content

Commit ac5afb1

Browse files
committed
Merge branch '1.3.x'
2 parents fc18149 + a98d1a4 commit ac5afb1

File tree

1 file changed

+22
-0
lines changed
  • spring-boot-tools/spring-boot-maven-plugin

1 file changed

+22
-0
lines changed

spring-boot-tools/spring-boot-maven-plugin/pom.xml

+22
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,28 @@
6767
</execution>
6868
</executions>
6969
</plugin>
70+
<plugin>
71+
<groupId>org.apache.maven.plugins</groupId>
72+
<artifactId>maven-invoker-plugin</artifactId>
73+
<configuration>
74+
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
75+
<settingsFile>src/it/settings.xml</settingsFile>
76+
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
77+
<postBuildHookScript>verify</postBuildHookScript>
78+
<addTestClassPath>true</addTestClassPath>
79+
<skipInvocation>${skipTests}</skipInvocation>
80+
<streamLogs>true</streamLogs>
81+
</configuration>
82+
<executions>
83+
<execution>
84+
<id>integration-test</id>
85+
<goals>
86+
<goal>install</goal>
87+
<goal>run</goal>
88+
</goals>
89+
</execution>
90+
</executions>
91+
</plugin>
7092
</plugins>
7193
</build>
7294
<reporting>

0 commit comments

Comments
 (0)