Created
June 20, 2014 14:25
-
-
Save kpiwko/ac66a44eda9c8342d1e7 to your computer and use it in GitHub Desktop.
Groovy magic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // update arquillian.xml files with EAP home in all installations and integration test directory | |
| project.selectedInstallations.inject( Tasks.chain([ | |
| jbossHome: "${home}" | |
| ], ArquillianXmlUpdater).dir(project.rootDir).containers('jboss', 'domain-controller', 'main-server-group') | |
| ) { arqXmlUpdater, installation -> | |
| arqXmlUpdater.dir(installation.home) | |
| }.execute().await() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment