Skip to content

Commit

Permalink
Make resultion to artifacts and plugins
Browse files Browse the repository at this point in the history
more reliable during integration tests
  • Loading branch information
khmarbaise committed Oct 24, 2015
1 parent 08127d4 commit 99bc020
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions core-it-suite/src/test/resources/bootstrap/pom.xml
Expand Up @@ -60,12 +60,12 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.2</version>
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -82,7 +82,20 @@ under the License.
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12.4</version>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>get-all-deps</id>
<phase>pre-integration-test</phase>
<goals>
<goal>resolve-plugins</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 99bc020

Please sign in to comment.