Skip to content

Commit

Permalink
try to get plugins installed locally so we can have verify working, i…
Browse files Browse the repository at this point in the history
…deally we should use a different local repo

Signed-off-by: Olivier Lamy <olamy@apache.org>
  • Loading branch information
olamy committed Mar 2, 2022
1 parent befe95e commit 43ab894
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions surefire-its/pom.xml
Expand Up @@ -262,6 +262,27 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-invoker-plugin</artifactId>
<configuration>
<localRepositoryPath>${settings.localRepository}</localRepositoryPath>
<extraArtifacts>
<extraArtifact>org.apache.maven.plugins:maven-surefire-report-plugin:${project.version}</extraArtifact>
<extraArtifact>org.apache.maven.plugins:maven-surefire-plugin:${project.version}</extraArtifact>
<extraArtifact>org.apache.maven.plugins:maven-failsafe-plugin:${project.version}</extraArtifact>
</extraArtifacts>
</configuration>
<executions>
<execution>
<id>install-dependencies</id>
<phase>pre-integration-test</phase>
<goals>
<goal>install</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
Expand Down

0 comments on commit 43ab894

Please sign in to comment.