diff options
author | Eric Hartmann <hartmann.eric@gmail.com> | 2017-06-19 16:41:19 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2017-07-05 21:02:58 +0200 |
commit | 884e73d80752e779949284176173028f5feb0100 (patch) | |
tree | e341f05bb80751f4056a7615d360b6fc9dd7d32e /tests/pom.xml | |
parent | e964104ca94fdd7b975dedbbe8b15eb578b41f53 (diff) | |
download | sonarqube-884e73d80752e779949284176173028f5feb0100.tar.gz sonarqube-884e73d80752e779949284176173028f5feb0100.zip |
MMF-935 experiment ES resilience of user creation
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> |