|
|
|
@ -201,22 +201,53 @@ |
|
|
|
<plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-invoker-plugin</artifactId> |
|
|
|
<artifactId>maven-invoker-plugin</artifactId> |
|
|
|
|
|
|
|
<configuration> |
|
|
|
|
|
|
|
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> |
|
|
|
|
|
|
|
</configuration> |
|
|
|
|
|
|
|
<executions> |
|
|
|
|
|
|
|
<execution> |
|
|
|
|
|
|
|
<id>prepare-integration-test</id> |
|
|
|
|
|
|
|
<phase>pre-integration-test</phase> |
|
|
|
|
|
|
|
<goals> |
|
|
|
|
|
|
|
<goal>install</goal> |
|
|
|
|
|
|
|
</goals> |
|
|
|
|
|
|
|
</execution> |
|
|
|
|
|
|
|
<execution> |
|
|
|
|
|
|
|
<id>integration-test</id> |
|
|
|
|
|
|
|
<goals> |
|
|
|
|
|
|
|
<goal>run</goal> |
|
|
|
|
|
|
|
</goals> |
|
|
|
<configuration> |
|
|
|
<configuration> |
|
|
|
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> |
|
|
|
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> |
|
|
|
<settingsFile>src/it/settings.xml</settingsFile> |
|
|
|
<settingsFile>src/it/settings.xml</settingsFile> |
|
|
|
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> |
|
|
|
|
|
|
|
<postBuildHookScript>verify</postBuildHookScript> |
|
|
|
<postBuildHookScript>verify</postBuildHookScript> |
|
|
|
<addTestClassPath>true</addTestClassPath> |
|
|
|
<addTestClassPath>true</addTestClassPath> |
|
|
|
<skipInvocation>${skipTests}</skipInvocation> |
|
|
|
<skipInvocation>${skipTests}</skipInvocation> |
|
|
|
<streamLogs>true</streamLogs> |
|
|
|
<streamLogs>true</streamLogs> |
|
|
|
</configuration> |
|
|
|
</configuration> |
|
|
|
|
|
|
|
</execution> |
|
|
|
|
|
|
|
</executions> |
|
|
|
|
|
|
|
</plugin> |
|
|
|
|
|
|
|
<plugin> |
|
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId> |
|
|
|
<executions> |
|
|
|
<executions> |
|
|
|
<execution> |
|
|
|
<execution> |
|
|
|
<id>integration-test</id> |
|
|
|
<id>cleanup-local-integration-repo</id> |
|
|
|
|
|
|
|
<phase>pre-integration-test</phase> |
|
|
|
<goals> |
|
|
|
<goals> |
|
|
|
<goal>install</goal> |
|
|
|
|
|
|
|
<goal>run</goal> |
|
|
|
<goal>run</goal> |
|
|
|
</goals> |
|
|
|
</goals> |
|
|
|
|
|
|
|
<configuration> |
|
|
|
|
|
|
|
<target> |
|
|
|
|
|
|
|
<replaceregexp match="\$\{revision\}" replace="${project.version}" |
|
|
|
|
|
|
|
flags="g" byline="true"> |
|
|
|
|
|
|
|
<fileset |
|
|
|
|
|
|
|
dir="${project.build.directory}/local-repo/org/springframework/boot/" |
|
|
|
|
|
|
|
includes="**/*.pom" /> |
|
|
|
|
|
|
|
</replaceregexp> |
|
|
|
|
|
|
|
</target> |
|
|
|
|
|
|
|
</configuration> |
|
|
|
</execution> |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
</plugin> |
|
|
|
|