Browse Source

Run Maven Plugin's integration tests when full profile is active

Closes gh-6036
pull/6071/head
Andy Wilkinson 10 years ago
parent
commit
a98d1a41a4
  1. 22
      spring-boot-tools/spring-boot-maven-plugin/pom.xml

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

@ -67,6 +67,28 @@ @@ -67,6 +67,28 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<configuration>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
<settingsFile>src/it/settings.xml</settingsFile>
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
<postBuildHookScript>verify</postBuildHookScript>
<addTestClassPath>true</addTestClassPath>
<skipInvocation>${skipTests}</skipInvocation>
<streamLogs>true</streamLogs>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>install</goal>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>

Loading…
Cancel
Save