diff options
Diffstat (limited to 'tests/pom.xml')
-rw-r--r-- | tests/pom.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/pom.xml b/tests/pom.xml index 2409cdfda33..4ac41b49d2f 100644 --- a/tests/pom.xml +++ b/tests/pom.xml @@ -157,6 +157,34 @@ </includes> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-dependency-plugin</artifactId> + <executions> + <execution> + <id>copy-byteman-for-resilience-tests</id> + <phase>generate-test-resources</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.jboss.byteman</groupId> + <artifactId>byteman</artifactId> + <version>3.0.10</version> + <overWrite>false</overWrite> + <destFileName>byteman.jar</destFileName> + </artifactItem> + </artifactItems> + <outputDirectory>${project.basedir}/target</outputDirectory> + <overWriteReleases>false</overWriteReleases> + <overWriteSnapshots>false</overWriteSnapshots> + </configuration> + </execution> + </executions> + </plugin> + </plugins> </build> |