├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .mvn └── wrapper │ ├── MavenWrapperDownloader.java │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── LICENSE ├── README.asciidoc ├── arquillian-algeron-git-publisher └── pom.xml ├── arquillian-algeron-git-retriever └── pom.xml ├── arquillian-algeron-maven-retriever └── pom.xml ├── arquillian-algeron-pact-broker-retriever └── pom.xml ├── arquillian-algeron-pact-consumer └── pom.xml ├── arquillian-algeron-pact-provider └── pom.xml ├── arquillian-ape-junit-rule └── pom.xml ├── arquillian-ape-nosql-couchbase └── pom.xml ├── arquillian-ape-nosql-mongodb └── pom.xml ├── arquillian-ape-nosql-redis └── pom.xml ├── arquillian-ape-nosql-vault └── pom.xml ├── arquillian-ape-rest-postman └── pom.xml ├── arquillian-ape-sql-container-dbunit └── pom.xml ├── arquillian-ape-sql-standalone-dbunit └── pom.xml ├── arquillian-ape-sql-standalone-flyway └── pom.xml ├── arquillian-byteman └── pom.xml ├── arquillian-chameleon └── pom.xml ├── arquillian-core └── pom.xml ├── arquillian-cube-containerless └── pom.xml ├── arquillian-cube-core └── pom.xml ├── arquillian-cube-docker-restassured └── pom.xml ├── arquillian-cube-docker └── pom.xml ├── arquillian-cube-kubernetes └── pom.xml ├── arquillian-cube-openshift └── pom.xml ├── arquillian-cube-q-pumba └── pom.xml ├── arquillian-cube-q-simianarmy └── pom.xml ├── arquillian-cube-q-toxic └── pom.xml ├── arquillian-cukes └── pom.xml ├── arquillian-drone └── pom.xml ├── arquillian-governor-core └── pom.xml ├── arquillian-governor-github └── pom.xml ├── arquillian-governor-ignore └── pom.xml ├── arquillian-governor-jira └── pom.xml ├── arquillian-governor-redmine └── pom.xml ├── arquillian-governor-skipper └── pom.xml ├── arquillian-graphene-recorder └── pom.xml ├── arquillian-graphene └── pom.xml ├── arquillian-jacoco └── pom.xml ├── arquillian-junit-standalone └── pom.xml ├── arquillian-junit └── pom.xml ├── arquillian-persistence-core └── pom.xml ├── arquillian-persistence └── pom.xml ├── arquillian-recorder-api └── pom.xml ├── arquillian-recorder └── pom.xml ├── arquillian-rest-core └── pom.xml ├── arquillian-rest-jaxrs2 └── pom.xml ├── arquillian-rest-jersey └── pom.xml ├── arquillian-rest-resteasy2 └── pom.xml ├── arquillian-rest-resteasy3 └── pom.xml ├── arquillian-rest-warp-core └── pom.xml ├── arquillian-rest-warp-cxf └── pom.xml ├── arquillian-rest-warp-jaxrs2 └── pom.xml ├── arquillian-rest-warp-jersey └── pom.xml ├── arquillian-rest-warp-resteasy └── pom.xml ├── arquillian-rusheye └── pom.xml ├── arquillian-spacelift └── pom.xml ├── arquillian-spring-persistence └── pom.xml ├── arquillian-spring-transaction └── pom.xml ├── arquillian-spring-warp └── pom.xml ├── arquillian-spring └── pom.xml ├── arquillian-testng-standalone └── pom.xml ├── arquillian-testng └── pom.xml ├── arquillian-transaction-core └── pom.xml ├── arquillian-transaction-jta └── pom.xml ├── arquillian-universe └── pom.xml ├── arquillian-warp-jsf └── pom.xml ├── arquillian-warp └── pom.xml ├── mvnw ├── mvnw.cmd ├── pom.xml └── test ├── .gitignore ├── pom.xml └── src └── test ├── java └── org │ └── arquillian │ └── universe │ └── test │ └── SimpleTestCase.java └── resources └── arquillian.xml /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | charset=utf-8 3 | end_of_line=lf 4 | insert_final_newline=true 5 | indent_style=space 6 | indent_size=4 7 | 8 | [{*.mod,*.dtd,*.ent,*.elt}] 9 | indent_style=space 10 | indent_size=2 11 | 12 | [{*.jhm,*.xjb,*.rng,*.wsdl,*.fxml,*.plan,*.pom,*.xslt,*.jrxml,*.ant,*.svg,*.xul,*.xsl,*.xsd,*.tld,*.jnlp,*.wsdd,*.wadl,*.xml}] 13 | indent_style=space 14 | indent_size=2 15 | 16 | [{.babelrc,.stylelintrc,.eslintrc,*.bowerrc,*.jsb3,*.jsb2,*.json}] 17 | indent_style=space 18 | indent_size=2 19 | 20 | [{*.yml,*.yaml}] 21 | indent_style=space 22 | indent_size=2 23 | 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 16 | 17 | ##### Issue Overview 18 | 19 | Tell us briefly what the problem is about. 20 | 21 | ##### Expected Behaviour 22 | 23 | ##### Current Behaviour 24 | 25 | ##### Steps To Reproduce 26 | 1. [step 1] 27 | 2. [step 2] 28 | 29 | ##### Additional Information 30 | 31 | Anything relevant to help us resolving the problem. For example if you are using `mvn` you can share output for `mvn --version` as well as dependencies in use `mvn dependency:tree`. OS as well as JDK version would be helpful too. 32 | 33 | For long outputs such as stacktraces please use HTML5 `
` 34 | 35 | ``` 36 |
37 | $mvn --version 38 | Maven home: /usr/share/maven/latest 39 | Java version: 1.7.0_79, vendor: Oracle Corporation 40 | Java home: /usr/java/jdk1.7.0_79/jre 41 | Default locale: en_US, platform encoding: UTF-8 42 | OS name: "linux", version: "4.7.7-200.fc24.x86_64", arch: "amd64", family: "unix" 43 |
44 | ``` 45 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 11 | 12 | #### Short description of what this resolves: 13 | 14 | 15 | #### Changes proposed in this pull request: 16 | 17 | - 18 | - 19 | - 20 | 21 | 22 | **Fixes**: # 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Eclipse 2 | .project 3 | .classpath 4 | .settings/ 5 | 6 | # IntelliJ 7 | *.iml 8 | *.ipr 9 | *.iws 10 | .idea 11 | 12 | # Gradle 13 | .gradle/ 14 | .ivy/ 15 | 16 | # Maven 17 | target/ 18 | dependency-reduced-pom.xml 19 | *.versionsBackup 20 | 21 | # TestNG 22 | test-output/ 23 | 24 | # JBoss AS 25 | transaction.log 26 | 27 | # Infinitest configuration 28 | infinitest.filters 29 | 30 | # Logs 31 | *.log 32 | *.log~ 33 | 34 | # Libreoffice leftovers (XLS) 35 | .~lock* 36 | 37 | atlassian-ide-plugin.xml 38 | .autoenv.zsh 39 | -------------------------------------------------------------------------------- /.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2007-present the original author or authors. 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | import java.net.*; 17 | import java.io.*; 18 | import java.nio.channels.*; 19 | import java.util.Properties; 20 | 21 | public class MavenWrapperDownloader { 22 | 23 | private static final String WRAPPER_VERSION = "0.5.5"; 24 | /** 25 | * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. 26 | */ 27 | private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" 28 | + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar"; 29 | 30 | /** 31 | * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to 32 | * use instead of the default one. 33 | */ 34 | private static final String MAVEN_WRAPPER_PROPERTIES_PATH = 35 | ".mvn/wrapper/maven-wrapper.properties"; 36 | 37 | /** 38 | * Path where the maven-wrapper.jar will be saved to. 39 | */ 40 | private static final String MAVEN_WRAPPER_JAR_PATH = 41 | ".mvn/wrapper/maven-wrapper.jar"; 42 | 43 | /** 44 | * Name of the property which should be used to override the default download url for the wrapper. 45 | */ 46 | private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; 47 | 48 | public static void main(String args[]) { 49 | System.out.println("- Downloader started"); 50 | File baseDirectory = new File(args[0]); 51 | System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); 52 | 53 | // If the maven-wrapper.properties exists, read it and check if it contains a custom 54 | // wrapperUrl parameter. 55 | File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); 56 | String url = DEFAULT_DOWNLOAD_URL; 57 | if(mavenWrapperPropertyFile.exists()) { 58 | FileInputStream mavenWrapperPropertyFileInputStream = null; 59 | try { 60 | mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); 61 | Properties mavenWrapperProperties = new Properties(); 62 | mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); 63 | url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); 64 | } catch (IOException e) { 65 | System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); 66 | } finally { 67 | try { 68 | if(mavenWrapperPropertyFileInputStream != null) { 69 | mavenWrapperPropertyFileInputStream.close(); 70 | } 71 | } catch (IOException e) { 72 | // Ignore ... 73 | } 74 | } 75 | } 76 | System.out.println("- Downloading from: " + url); 77 | 78 | File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); 79 | if(!outputFile.getParentFile().exists()) { 80 | if(!outputFile.getParentFile().mkdirs()) { 81 | System.out.println( 82 | "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'"); 83 | } 84 | } 85 | System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); 86 | try { 87 | downloadFileFromURL(url, outputFile); 88 | System.out.println("Done"); 89 | System.exit(0); 90 | } catch (Throwable e) { 91 | System.out.println("- Error downloading"); 92 | e.printStackTrace(); 93 | System.exit(1); 94 | } 95 | } 96 | 97 | private static void downloadFileFromURL(String urlString, File destination) throws Exception { 98 | if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { 99 | String username = System.getenv("MVNW_USERNAME"); 100 | char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); 101 | Authenticator.setDefault(new Authenticator() { 102 | @Override 103 | protected PasswordAuthentication getPasswordAuthentication() { 104 | return new PasswordAuthentication(username, password); 105 | } 106 | }); 107 | } 108 | URL website = new URL(urlString); 109 | ReadableByteChannel rbc; 110 | rbc = Channels.newChannel(website.openStream()); 111 | FileOutputStream fos = new FileOutputStream(destination); 112 | fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); 113 | fos.close(); 114 | rbc.close(); 115 | } 116 | 117 | } 118 | -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arquillian/arquillian-universe-bom/5b9b70cae8967780fd4bf90a1d0366d5d90e3662/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.1/apache-maven-3.6.1-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | jdk: 3 | - openjdk8 4 | before_install: 5 | - sed -i.bak -e 's|http://repo.maven.apache.org/maven2|https://repo.maven.apache.org/maven2|g' $HOME/.m2/settings.xml 6 | - chmod +x mvnw 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | 203 | -------------------------------------------------------------------------------- /arquillian-algeron-git-publisher/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-algeron-git-publisher 13 | Arquillian Algeron Git Publisher 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.algeron 20 | arquillian-algeron-consumer-git-publisher 21 | ${version.arquillian_algeron} 22 | 23 | 24 | 25 | 26 | 27 | 28 | org.arquillian.algeron 29 | arquillian-algeron-consumer-git-publisher 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /arquillian-algeron-git-retriever/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-algeron-git-retriever 13 | Arquillian Algeron Git Retriever 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.algeron 20 | arquillian-algeron-provider-git-retriever 21 | ${version.arquillian_algeron} 22 | 23 | 24 | 25 | 26 | 27 | 28 | org.arquillian.algeron 29 | arquillian-algeron-provider-git-retriever 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /arquillian-algeron-maven-retriever/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-algeron-maven-retriever 13 | Arquillian Algeron Maven Retriever 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.algeron 20 | arquillian-algeron-provider-maven-retriever 21 | ${version.arquillian_algeron} 22 | 23 | 24 | 25 | 26 | 27 | 28 | org.arquillian.algeron 29 | arquillian-algeron-provider-maven-retriever 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /arquillian-algeron-pact-broker-retriever/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-algeron-pact-broker-retriever 13 | Arquillian Algeron Pact Broker Retriever 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.algeron 20 | arquillian-algeron-pact-provider-pact-broker-loader 21 | ${version.arquillian_algeron} 22 | 23 | 24 | 25 | 26 | 27 | 28 | org.arquillian.algeron 29 | arquillian-algeron-pact-provider-pact-broker-loader 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /arquillian-algeron-pact-consumer/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-algeron-pact-consumer 13 | Arquillian Algeron Pact Consumer 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.algeron 27 | arquillian-algeron-pact-consumer-core 28 | ${version.arquillian_algeron} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.algeron 42 | arquillian-algeron-pact-consumer-core 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /arquillian-algeron-pact-provider/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-algeron-pact-provider 13 | Arquillian Algeron Pact Provider 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.algeron 27 | arquillian-algeron-pact-provider-core 28 | ${version.arquillian_algeron} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.algeron 42 | arquillian-algeron-pact-provider-core 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /arquillian-ape-junit-rule/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-ape-junit-rule 13 | Arquillian APE JUnit Rule 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.ape 20 | arquillian-ape-junit-rule 21 | ${version.ape} 22 | 23 | 24 | 25 | 26 | 27 | 28 | org.arquillian.ape 29 | arquillian-ape-junit-rule 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /arquillian-ape-nosql-couchbase/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-ape-nosql-couchbase 13 | Arquillian APE NoSQL Couchbase 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.ape 27 | arquillian-ape-nosql-couchbase 28 | ${version.ape} 29 | 30 | 31 | com.lordofthejars 32 | nosqlunit-couchbase 33 | ${version.nosqlunit} 34 | 35 | 36 | 37 | 38 | 39 | 40 | org.arquillian.universe 41 | arquillian-core 42 | ${project.version} 43 | pom 44 | 45 | 46 | org.arquillian.ape 47 | arquillian-ape-nosql-couchbase 48 | 49 | 50 | com.lordofthejars 51 | nosqlunit-couchbase 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /arquillian-ape-nosql-mongodb/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-ape-nosql-mongodb 13 | Arquillian APE NoSQL MongoDB 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.ape 27 | arquillian-ape-nosql-mongodb 28 | ${version.ape} 29 | 30 | 31 | com.lordofthejars 32 | nosqlunit-mongodb 33 | ${version.nosqlunit} 34 | 35 | 36 | 37 | 38 | 39 | 40 | org.arquillian.universe 41 | arquillian-core 42 | ${project.version} 43 | pom 44 | 45 | 46 | org.arquillian.ape 47 | arquillian-ape-nosql-mongodb 48 | 49 | 50 | com.lordofthejars 51 | nosqlunit-mongodb 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /arquillian-ape-nosql-redis/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-ape-nosql-redis 13 | Arquillian APE NoSQL Redis 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.ape 27 | arquillian-ape-nosql-redis 28 | ${version.ape} 29 | 30 | 31 | com.lordofthejars 32 | nosqlunit-redis 33 | ${version.nosqlunit} 34 | 35 | 36 | 37 | 38 | 39 | 40 | org.arquillian.universe 41 | arquillian-core 42 | ${project.version} 43 | pom 44 | 45 | 46 | org.arquillian.ape 47 | arquillian-ape-nosql-redis 48 | 49 | 50 | com.lordofthejars 51 | nosqlunit-redis 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /arquillian-ape-nosql-vault/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-ape-nosql-vault 13 | Arquillian APE NoSQL Vault 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.ape 27 | arquillian-ape-nosql-vault 28 | ${version.ape} 29 | 30 | 31 | com.lordofthejars 32 | nosqlunit-vault 33 | ${version.nosqlunit} 34 | 35 | 36 | 37 | 38 | 39 | 40 | org.arquillian.universe 41 | arquillian-core 42 | ${project.version} 43 | pom 44 | 45 | 46 | org.arquillian.ape 47 | arquillian-ape-nosql-vault 48 | 49 | 50 | com.lordofthejars 51 | nosqlunit-vault 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /arquillian-ape-rest-postman/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-ape-rest-postman 13 | Arquillian APE REST Postman 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.ape 27 | arquillian-ape-rest-postman 28 | ${version.ape} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.ape 42 | arquillian-ape-rest-postman 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-ape-sql-container-dbunit/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-ape-sql-container-dbunit 13 | Arquillian APE SQL Container DBUnit 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.ape 27 | arquillian-ape-sql-container-dbunit 28 | ${version.ape} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.ape 42 | arquillian-ape-sql-container-dbunit 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-ape-sql-standalone-dbunit/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-ape-sql-standalone-dbunit 13 | Arquillian APE SQL Standalone DBUnit 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.ape 27 | arquillian-ape-sql-standalone-dbunit 28 | ${version.ape} 29 | 30 | 31 | org.dbunit 32 | dbunit 33 | ${version.dbunit} 34 | 35 | 36 | 37 | 38 | 39 | 40 | org.arquillian.universe 41 | arquillian-core 42 | ${project.version} 43 | pom 44 | 45 | 46 | org.arquillian.ape 47 | arquillian-ape-sql-standalone-dbunit 48 | 49 | 50 | org.dbunit 51 | dbunit 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /arquillian-ape-sql-standalone-flyway/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-ape-sql-standalone-flyway 13 | Arquillian APE SQL Standalone Flyway 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.ape 27 | arquillian-ape-sql-standalone-flyway 28 | ${version.ape} 29 | 30 | 31 | org.flywaydb 32 | flyway-core 33 | ${version.flyway} 34 | 35 | 36 | 37 | 38 | 39 | 40 | org.arquillian.universe 41 | arquillian-core 42 | ${project.version} 43 | pom 44 | 45 | 46 | org.arquillian.ape 47 | arquillian-ape-sql-standalone-flyway 48 | 49 | 50 | org.flywaydb 51 | flyway-core 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /arquillian-byteman/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-byteman 13 | Arquillian Byteman 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-extension-byteman 28 | ${version.arquillian_byteman} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.jboss.arquillian.extension 42 | arquillian-extension-byteman 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-chameleon/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-chameleon 13 | Arquillian Chameleon 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.container 27 | arquillian-container-chameleon 28 | ${version.arquillian_chameleon} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.container 42 | arquillian-container-chameleon 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-core/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-core 13 | Arquillian Core 14 | pom 15 | 16 | 17 | 18 | 19 | org.jboss.shrinkwrap 20 | shrinkwrap-bom 21 | ${version.shrinkwrap} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.shrinkwrap.descriptors 27 | shrinkwrap-descriptors-bom 28 | ${version.shrinkwrap_descriptors} 29 | import 30 | pom 31 | 32 | 33 | org.jboss.shrinkwrap.resolver 34 | shrinkwrap-resolver-bom 35 | ${version.shrinkwrap_resolvers} 36 | import 37 | pom 38 | 39 | 40 | org.jboss.arquillian 41 | arquillian-bom 42 | ${version.arquillian_core} 43 | import 44 | pom 45 | 46 | 47 | 48 | 49 | 50 | 51 | org.jboss.shrinkwrap 52 | shrinkwrap-depchain 53 | pom 54 | 55 | 56 | org.jboss.shrinkwrap.resolver 57 | shrinkwrap-resolver-depchain 58 | pom 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /arquillian-cube-containerless/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cube-containerless 13 | Arquillian Cube Containerless 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-cube-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.cube 27 | arquillian-cube-containerless 28 | ${version.arquillian_cube} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-cube-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.cube 42 | arquillian-cube-containerless 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /arquillian-cube-core/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cube-core 13 | Arquillian Cube Core 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.cube 27 | arquillian-cube-core 28 | ${version.arquillian_cube} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.cube 42 | arquillian-cube-core 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /arquillian-cube-docker-restassured/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cube-docker-restassured 13 | Arquillian Cube Docker REST Assured 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-cube-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.universe 27 | arquillian-cube-docker 28 | ${project.version} 29 | 30 | 31 | org.arquillian.cube 32 | arquillian-cube-docker-restassured 33 | ${version.arquillian_cube} 34 | 35 | 36 | 37 | 38 | 39 | 40 | org.arquillian.universe 41 | arquillian-cube-core 42 | ${project.version} 43 | pom 44 | 45 | 46 | org.arquillian.universe 47 | arquillian-cube-docker 48 | ${project.version} 49 | pom 50 | 51 | 52 | org.arquillian.cube 53 | arquillian-cube-docker-restassured 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /arquillian-cube-docker/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cube-docker 13 | Arquillian Cube Docker 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-cube-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.cube 27 | arquillian-cube-docker 28 | ${version.arquillian_cube} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-cube-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.cube 42 | arquillian-cube-docker 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /arquillian-cube-kubernetes/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cube-kubernetes 13 | Arquillian Cube Kubernetes 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-cube-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.cube 27 | arquillian-cube-kubernetes 28 | ${version.arquillian_cube} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-cube-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.cube 42 | arquillian-cube-kubernetes 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /arquillian-cube-openshift/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cube-openshift 13 | Arquillian Cube OpenShift 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-cube-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.cube 27 | arquillian-cube-openshift 28 | ${version.arquillian_cube} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-cube-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.cube 42 | arquillian-cube-openshift 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /arquillian-cube-q-pumba/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cube-q-pumba 13 | Arquillian Cube Q Pumba 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-cube-docker 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.cube.q 27 | arquillian-cube-q-pumba 28 | ${version.arquillian_cube_q} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.cube.q 36 | arquillian-cube-q-pumba 37 | 38 | 39 | org.arquillian.universe 40 | arquillian-cube-docker 41 | ${project.version} 42 | pom 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /arquillian-cube-q-simianarmy/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cube-q-simianarmy 13 | Arquillian Cube Q SimianArmy 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-cube-docker 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.cube.q 27 | arquillian-cube-q-simianarmy 28 | ${version.arquillian_cube_q} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-cube-docker 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.cube.q 42 | arquillian-cube-q-simianarmy 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /arquillian-cube-q-toxic/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cube-q-toxic 13 | Arquillian Cube Q Toxic 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-cube-docker 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.cube.q 27 | arquillian-cube-q-toxic 28 | ${version.arquillian_cube_q} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-cube-docker 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.cube.q 42 | arquillian-cube-q-toxic 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /arquillian-cukes/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-cukes 13 | Arquillian Cukes In Space 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | com.github.cukespace 27 | cukespace-core 28 | ${version.arquillian_cukes_in_space} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | com.github.cukespace 42 | cukespace-core 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /arquillian-drone/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-drone 13 | Arquillian Drone 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.selenium 27 | selenium-bom 28 | ${version.selenium} 29 | pom 30 | import 31 | 32 | 33 | org.jboss.arquillian.extension 34 | arquillian-drone-bom 35 | ${version.arquillian_drone} 36 | pom 37 | import 38 | 39 | 40 | org.jboss.arquillian.extension 41 | arquillian-drone-webdriver-depchain 42 | ${version.arquillian_drone} 43 | pom 44 | 45 | 46 | org.jboss.arquillian.extension 47 | arquillian-drone-webdriver 48 | ${version.arquillian_drone} 49 | 50 | 51 | 52 | 53 | 54 | 55 | org.arquillian.universe 56 | arquillian-core 57 | ${project.version} 58 | pom 59 | 60 | 61 | org.seleniumhq.selenium 62 | selenium-api 63 | 64 | 65 | org.seleniumhq.selenium 66 | selenium-java 67 | 68 | 69 | org.seleniumhq.selenium 70 | selenium-support 71 | 72 | 73 | org.jboss.arquillian.extension 74 | arquillian-drone-webdriver-depchain 75 | pom 76 | 77 | 78 | org.jboss.arquillian.extension 79 | arquillian-drone-webdriver 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /arquillian-governor-core/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-governor-core 13 | Arquillian Governor Core 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.extension 27 | arquillian-governor 28 | ${version.arquillian_governor} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.extension 42 | arquillian-governor 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-governor-github/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-governor-github 13 | Arquillian Governor GitHub 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-governor-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.extension 27 | arquillian-governor-github 28 | ${version.arquillian_governor} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-governor-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.extension 42 | arquillian-governor-github 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-governor-ignore/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-governor-ignore 13 | Arquillian Governor Ignore 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-governor-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.extension 27 | arquillian-governor-ignore 28 | ${version.arquillian_governor} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-governor-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.extension 42 | arquillian-governor-ignore 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-governor-jira/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-governor-jira 13 | Arquillian Governor JIRA 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-governor-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.extension 27 | arquillian-governor-jira 28 | ${version.arquillian_governor} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-governor-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.extension 42 | arquillian-governor-jira 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-governor-redmine/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-governor-redmine 13 | Arquillian Governor Redmine 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-governor-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.extension 27 | arquillian-governor-redmine 28 | ${version.arquillian_governor} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-governor-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.arquillian.extension 42 | arquillian-governor-redmine 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-governor-skipper/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-governor-skipper 13 | Arquillian Governor Skipper 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-governor-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.universe 27 | arquillian-recorder-api 28 | ${project.version} 29 | import 30 | pom 31 | 32 | 33 | org.arquillian.extension 34 | arquillian-governor-skipper 35 | ${version.arquillian_governor} 36 | 37 | 38 | 39 | 40 | 41 | 42 | org.arquillian.universe 43 | arquillian-governor-core 44 | ${project.version} 45 | pom 46 | 47 | 48 | org.arquillian.universe 49 | arquillian-recorder-api 50 | ${project.version} 51 | pom 52 | 53 | 54 | org.arquillian.extension 55 | arquillian-governor-skipper 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /arquillian-graphene-recorder/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-graphene-recorder 13 | Arquillian Graphene Recorder 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-graphene 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.universe 27 | arquillian-recorder 28 | ${project.version} 29 | import 30 | pom 31 | 32 | 33 | org.jboss.arquillian.graphene 34 | arquillian-browser-screenshooter 35 | ${version.arquillian_graphene} 36 | 37 | 38 | 39 | 40 | 41 | 42 | org.arquillian.universe 43 | arquillian-graphene 44 | ${project.version} 45 | pom 46 | 47 | 48 | org.arquillian.universe 49 | arquillian-recorder 50 | ${project.version} 51 | pom 52 | 53 | 54 | org.jboss.arquillian.graphene 55 | arquillian-browser-screenshooter 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /arquillian-graphene/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-graphene 13 | Arquillian Graphene 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-drone 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.graphene 27 | graphene-webdriver 28 | ${version.arquillian_graphene} 29 | pom 30 | 31 | 32 | 33 | 34 | 35 | 36 | org.arquillian.universe 37 | arquillian-drone 38 | ${project.version} 39 | pom 40 | 41 | 42 | org.jboss.arquillian.graphene 43 | graphene-webdriver 44 | pom 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /arquillian-jacoco/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-jacoco 13 | Arquillian Jacoco 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-jacoco 28 | ${version.arquillian_jacoco} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.jboss.arquillian.extension 42 | arquillian-jacoco 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-junit-standalone/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-junit-standalone 13 | Arquillian JUnit Standalone 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.arquillian.universe 31 | arquillian-core 32 | ${project.version} 33 | pom 34 | 35 | 36 | org.jboss.arquillian.junit 37 | arquillian-junit-standalone 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /arquillian-junit/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-junit 13 | Arquillian JUnit 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.arquillian.universe 31 | arquillian-core 32 | ${project.version} 33 | pom 34 | 35 | 36 | org.jboss.arquillian.junit 37 | arquillian-junit-container 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /arquillian-persistence-core/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-persistence-core 13 | Arquillian Persistence Core 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-persistence-dbunit 28 | ${version.arquillian_persistence} 29 | 30 | 31 | org.jboss.arquillian.extension 32 | arquillian-transaction-jta 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | org.arquillian.universe 42 | arquillian-core 43 | ${project.version} 44 | pom 45 | 46 | 47 | org.jboss.arquillian.extension 48 | arquillian-persistence-dbunit 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /arquillian-persistence/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-persistence 13 | Arquillian Persistence 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.universe 27 | arquillian-transaction-jta 28 | ${project.version} 29 | import 30 | pom 31 | 32 | 33 | org.arquillian.universe 34 | arquillian-persistence-core 35 | ${project.version} 36 | import 37 | pom 38 | 39 | 40 | 41 | 42 | 43 | 44 | org.arquillian.universe 45 | arquillian-core 46 | ${project.version} 47 | pom 48 | 49 | 50 | org.arquillian.universe 51 | arquillian-transaction-jta 52 | ${project.version} 53 | pom 54 | 55 | 56 | org.arquillian.universe 57 | arquillian-persistence-core 58 | ${project.version} 59 | pom 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /arquillian-recorder-api/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-recorder-api 13 | Arquillian Recorder API 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.extension 27 | arquillian-recorder-reporter-api 28 | ${version.arquillian_recorder} 29 | 30 | 31 | org.arquillian.extension 32 | arquillian-recorder-reporter-spi 33 | ${version.arquillian_recorder} 34 | 35 | 36 | org.arquillian.extension 37 | arquillian-recorder-screenshooter-api 38 | ${version.arquillian_recorder} 39 | 40 | 41 | org.arquillian.extension 42 | arquillian-recorder-screenshooter-spi 43 | ${version.arquillian_recorder} 44 | 45 | 46 | org.arquillian.extension 47 | arquillian-recorder-video-api 48 | ${version.arquillian_recorder} 49 | 50 | 51 | org.arquillian.extension 52 | arquillian-recorder-video-spi 53 | ${version.arquillian_recorder} 54 | 55 | 56 | 57 | 58 | 59 | 60 | org.arquillian.universe 61 | arquillian-core 62 | ${project.version} 63 | pom 64 | 65 | 66 | org.arquillian.extension 67 | arquillian-recorder-reporter-api 68 | 69 | 70 | org.arquillian.extension 71 | arquillian-recorder-reporter-spi 72 | 73 | 74 | org.arquillian.extension 75 | arquillian-recorder-screenshooter-api 76 | 77 | 78 | org.arquillian.extension 79 | arquillian-recorder-screenshooter-spi 80 | 81 | 82 | org.arquillian.extension 83 | arquillian-recorder-video-api 84 | 85 | 86 | org.arquillian.extension 87 | arquillian-recorder-video-spi 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /arquillian-recorder/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-recorder 13 | Arquillian Recorder 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.universe 27 | arquillian-recorder-api 28 | ${project.version} 29 | import 30 | pom 31 | 32 | 33 | org.arquillian.extension 34 | arquillian-recorder-reporter-impl 35 | ${version.arquillian_recorder} 36 | 37 | 38 | org.arquillian.extension 39 | arquillian-recorder-screenshooter-impl-base 40 | ${version.arquillian_recorder} 41 | 42 | 43 | org.arquillian.extension 44 | arquillian-recorder-video-impl-base 45 | ${version.arquillian_recorder} 46 | 47 | 48 | 49 | 50 | 51 | 52 | org.arquillian.universe 53 | arquillian-core 54 | ${project.version} 55 | pom 56 | 57 | 58 | org.arquillian.universe 59 | arquillian-recorder-api 60 | ${project.version} 61 | pom 62 | 63 | 64 | org.arquillian.extension 65 | arquillian-recorder-reporter-impl 66 | 67 | 68 | org.arquillian.extension 69 | arquillian-recorder-screenshooter-impl-base 70 | 71 | 72 | org.arquillian.extension 73 | arquillian-recorder-video-impl-base 74 | 75 | 76 | 77 | -------------------------------------------------------------------------------- /arquillian-rest-core/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-core 13 | Arquillian REST Core 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-rest-client-impl-base 28 | ${version.arquillian_rest} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.jboss.arquillian.extension 42 | arquillian-rest-client-impl-base 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-rest-jaxrs2/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-jaxrs2 13 | Arquillian REST JaxRS 2 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-rest-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-rest-client-impl-jaxrs-2 28 | ${version.arquillian_rest} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-rest-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.jboss.arquillian.extension 42 | arquillian-rest-client-impl-jaxrs-2 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-rest-jersey/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-jersey 13 | Arquillian REST Jersey 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-rest-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-rest-client-impl-jersey 28 | ${version.arquillian_rest} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-rest-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.jboss.arquillian.extension 42 | arquillian-rest-client-impl-jersey 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-rest-resteasy2/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-resteasy2 13 | Arquillian REST RestEasy 2x 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-rest-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-rest-client-impl-2x 28 | ${version.arquillian_rest} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-rest-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.jboss.arquillian.extension 42 | arquillian-rest-client-impl-2x 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-rest-resteasy3/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-resteasy3 13 | Arquillian REST RestEasy 3x 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-rest-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-rest-client-impl-3x 28 | ${version.arquillian_rest} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-rest-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.jboss.arquillian.extension 42 | arquillian-rest-client-impl-3x 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-rest-warp-core/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-warp-core 13 | Arquillian REST Warp Core 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-warp 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-rest-warp-bom 28 | ${version.arquillian_rest} 29 | import 30 | pom 31 | 32 | 33 | 34 | 35 | 36 | 37 | org.arquillian.universe 38 | arquillian-warp 39 | ${project.version} 40 | pom 41 | 42 | 43 | org.jboss.arquillian.extension 44 | arquillian-rest-warp-impl-base 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /arquillian-rest-warp-cxf/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-warp-cxf 13 | Arquillian REST Warp CXF 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-rest-warp-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.arquillian.universe 31 | arquillian-rest-warp-core 32 | ${project.version} 33 | pom 34 | 35 | 36 | org.jboss.arquillian.extension 37 | arquillian-rest-warp-impl-cxf 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /arquillian-rest-warp-jaxrs2/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-warp-jaxrs2 13 | Arquillian REST Warp JAXRS 2.0 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-rest-warp-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.arquillian.universe 31 | arquillian-rest-warp-core 32 | ${project.version} 33 | pom 34 | 35 | 36 | org.jboss.arquillian.extension 37 | arquillian-rest-warp-impl-jaxrs-2.0 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /arquillian-rest-warp-jersey/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-warp-jersey 13 | Arquillian REST Warp Jersey 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-rest-warp-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.arquillian.universe 31 | arquillian-rest-warp-core 32 | ${project.version} 33 | pom 34 | 35 | 36 | org.jboss.arquillian.extension 37 | arquillian-rest-warp-impl-jersey 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /arquillian-rest-warp-resteasy/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rest-warp-resteasy 13 | Arquillian REST Warp RestEasy 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-rest-warp-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.arquillian.universe 31 | arquillian-rest-warp-core 32 | ${project.version} 33 | pom 34 | 35 | 36 | org.jboss.arquillian.extension 37 | arquillian-rest-warp-impl-resteasy 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /arquillian-rusheye/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-rusheye 13 | Arquillian Rusheye 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.rusheye 20 | rusheye-api 21 | ${version.rusheye} 22 | 23 | 24 | org.arquillian.rusheye 25 | rusheye-impl 26 | ${version.rusheye} 27 | 28 | 29 | 30 | 31 | 32 | 33 | org.arquillian.rusheye 34 | rusheye-impl 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /arquillian-spacelift/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-spacelift 13 | Arquillian Spacelift 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.spacelift 27 | arquillian-spacelift 28 | ${version.arquillian_spacelift} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.spacelift 36 | arquillian-spacelift 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /arquillian-spring-persistence/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-spring-persistence 13 | Arquillian Spring Persistence 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-spring 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.universe 27 | arquillian-persistence-core 28 | ${project.version} 29 | import 30 | pom 31 | 32 | 33 | org.jboss.arquillian.extension 34 | arquillian-persistence-spring 35 | ${version.arquillian_spring} 36 | 37 | 38 | 39 | 40 | 41 | 42 | org.arquillian.universe 43 | arquillian-spring 44 | ${project.version} 45 | pom 46 | 47 | 48 | org.arquillian.universe 49 | arquillian-persistence-core 50 | ${project.version} 51 | pom 52 | 53 | 54 | org.jboss.arquillian.extension 55 | arquillian-persistence-spring 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /arquillian-spring-transaction/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-spring-transaction 13 | Arquillian Spring Transaction 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-spring 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.universe 27 | arquillian-transaction-core 28 | ${project.version} 29 | import 30 | pom 31 | 32 | 33 | org.jboss.arquillian.extension 34 | arquillian-transaction-spring 35 | ${version.arquillian_spring} 36 | 37 | 38 | 39 | 40 | 41 | 42 | org.arquillian.universe 43 | arquillian-spring 44 | ${project.version} 45 | pom 46 | 47 | 48 | org.arquillian.universe 49 | arquillian-transaction-core 50 | ${project.version} 51 | pom 52 | 53 | 54 | org.jboss.arquillian.extension 55 | arquillian-transaction-spring 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /arquillian-spring-warp/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-spring-warp 13 | Arquillian Spring Warp 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-spring 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.arquillian.universe 27 | arquillian-warp 28 | ${project.version} 29 | import 30 | pom 31 | 32 | 33 | org.jboss.arquillian.extension 34 | arquillian-warp-spring 35 | ${version.arquillian_spring} 36 | 37 | 38 | 39 | 40 | 41 | 42 | org.arquillian.universe 43 | arquillian-spring 44 | ${project.version} 45 | pom 46 | 47 | 48 | org.arquillian.universe 49 | arquillian-warp 50 | ${project.version} 51 | pom 52 | 53 | 54 | org.jboss.arquillian.extension 55 | arquillian-warp-spring 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /arquillian-spring/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-spring 13 | Arquillian Spring 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-service-integration-spring-inject 28 | ${version.arquillian_spring} 29 | 30 | 31 | org.jboss.arquillian.extension 32 | arquillian-service-integration-spring-javaconfig 33 | ${version.arquillian_spring} 34 | 35 | 36 | 37 | 38 | 39 | 40 | org.arquillian.universe 41 | arquillian-core 42 | ${project.version} 43 | pom 44 | 45 | 46 | org.jboss.arquillian.extension 47 | arquillian-service-integration-spring-inject 48 | 49 | 50 | org.jboss.arquillian.extension 51 | arquillian-service-integration-spring-javaconfig 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /arquillian-testng-standalone/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-testng-standalone 13 | Arquillian TestNG Standalone 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.arquillian.universe 31 | arquillian-core 32 | ${project.version} 33 | pom 34 | 35 | 36 | org.jboss.arquillian.testng 37 | arquillian-testng-standalone 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /arquillian-testng/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-testng 13 | Arquillian TestNG 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.arquillian.universe 31 | arquillian-core 32 | ${project.version} 33 | pom 34 | 35 | 36 | org.jboss.arquillian.testng 37 | arquillian-testng-container 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /arquillian-transaction-core/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-transaction-core 13 | Arquillian Transaction Core 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-transaction-impl-base 28 | ${version.arquillian_transaction} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.jboss.arquillian.extension 42 | arquillian-transaction-impl-base 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-transaction-jta/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-transaction-jta 13 | Arquillian Transaction JTA 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-transaction-core 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | org.jboss.arquillian.extension 27 | arquillian-transaction-jta 28 | ${version.arquillian_transaction} 29 | 30 | 31 | 32 | 33 | 34 | 35 | org.arquillian.universe 36 | arquillian-transaction-core 37 | ${project.version} 38 | pom 39 | 40 | 41 | org.jboss.arquillian.extension 42 | arquillian-transaction-jta 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /arquillian-universe/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | org.arquillian.universe 6 | arquillian-universe-parent 7 | 1.5.0.1-SNAPSHOT 8 | ../pom.xml 9 | 10 | 11 | 4.0.0 12 | 13 | org.arquillian 14 | arquillian-universe 15 | 16 | Arquillian Universe 17 | http://arquillian.org 18 | Arquillian Universe 19 | pom 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | org.arquillian.universe 28 | arquillian-core 29 | ${project.version} 30 | import 31 | pom 32 | 33 | 34 | 35 | 36 | 37 | org.arquillian.universe 38 | arquillian-junit 39 | ${project.version} 40 | pom 41 | 42 | 43 | org.arquillian.universe 44 | arquillian-junit-standalone 45 | ${project.version} 46 | pom 47 | 48 | 49 | 50 | org.arquillian.universe 51 | arquillian-testng 52 | ${project.version} 53 | pom 54 | 55 | 56 | org.arquillian.universe 57 | arquillian-testng-standalone 58 | ${project.version} 59 | pom 60 | 61 | 62 | 63 | org.arquillian.universe 64 | arquillian-cukes 65 | ${project.version} 66 | pom 67 | 68 | 69 | 70 | 71 | 72 | org.arquillian.universe 73 | arquillian-drone 74 | ${project.version} 75 | pom 76 | 77 | 78 | 79 | org.arquillian.universe 80 | arquillian-graphene 81 | ${project.version} 82 | pom 83 | 84 | 85 | org.arquillian.universe 86 | arquillian-graphene-recorder 87 | ${project.version} 88 | pom 89 | 90 | 91 | 92 | org.arquillian.universe 93 | arquillian-warp 94 | ${project.version} 95 | pom 96 | 97 | 98 | org.arquillian.universe 99 | arquillian-warp-jsf 100 | ${project.version} 101 | pom 102 | 103 | 104 | 105 | org.arquillian.universe 106 | arquillian-transaction-jta 107 | ${project.version} 108 | pom 109 | 110 | 111 | 112 | org.arquillian.universe 113 | arquillian-persistence 114 | ${project.version} 115 | pom 116 | 117 | 118 | 119 | org.arquillian.universe 120 | arquillian-spring 121 | ${project.version} 122 | pom 123 | 124 | 125 | org.arquillian.universe 126 | arquillian-spring-transaction 127 | ${project.version} 128 | pom 129 | 130 | 131 | org.arquillian.universe 132 | arquillian-spring-persistence 133 | ${project.version} 134 | pom 135 | 136 | 137 | org.arquillian.universe 138 | arquillian-spring-warp 139 | ${project.version} 140 | pom 141 | 142 | 143 | 144 | org.arquillian.universe 145 | arquillian-governor-jira 146 | ${project.version} 147 | pom 148 | 149 | 150 | org.arquillian.universe 151 | arquillian-governor-skipper 152 | ${project.version} 153 | pom 154 | 155 | 156 | 157 | org.arquillian.universe 158 | arquillian-byteman 159 | ${project.version} 160 | pom 161 | 162 | 163 | 164 | org.arquillian.universe 165 | arquillian-jacoco 166 | ${project.version} 167 | pom 168 | 169 | 170 | 171 | org.arquillian.universe 172 | arquillian-recorder-api 173 | ${project.version} 174 | pom 175 | 176 | 177 | org.arquillian.universe 178 | arquillian-recorder 179 | ${project.version} 180 | pom 181 | 182 | 183 | 184 | org.arquillian.universe 185 | arquillian-rest-resteasy2 186 | ${project.version} 187 | pom 188 | 189 | 190 | org.arquillian.universe 191 | arquillian-rest-resteasy3 192 | ${project.version} 193 | pom 194 | 195 | 196 | org.arquillian.universe 197 | arquillian-rest-jaxrs2 198 | ${project.version} 199 | pom 200 | 201 | 202 | org.arquillian.universe 203 | arquillian-rest-jersey 204 | ${project.version} 205 | pom 206 | 207 | 208 | org.arquillian.universe 209 | arquillian-rest-warp-resteasy 210 | ${project.version} 211 | pom 212 | 213 | 214 | org.arquillian.universe 215 | arquillian-rest-warp-jaxrs2 216 | ${project.version} 217 | pom 218 | 219 | 220 | org.arquillian.universe 221 | arquillian-rest-warp-cxf 222 | ${project.version} 223 | pom 224 | 225 | 226 | org.arquillian.universe 227 | arquillian-rest-warp-jersey 228 | ${project.version} 229 | pom 230 | 231 | 232 | 233 | org.arquillian.universe 234 | arquillian-chameleon 235 | ${project.version} 236 | pom 237 | 238 | 239 | 240 | org.arquillian.universe 241 | arquillian-cube-docker 242 | ${project.version} 243 | pom 244 | 245 | 246 | org.arquillian.universe 247 | arquillian-cube-docker-restassured 248 | ${project.version} 249 | pom 250 | 251 | 252 | org.arquillian.universe 253 | arquillian-cube-kubernetes 254 | ${project.version} 255 | pom 256 | 257 | 258 | org.arquillian.universe 259 | arquillian-cube-openshift 260 | ${project.version} 261 | pom 262 | 263 | 264 | org.arquillian.universe 265 | arquillian-cube-containerless 266 | ${project.version} 267 | pom 268 | 269 | 270 | org.arquillian.universe 271 | arquillian-algeron-pact-consumer 272 | ${project.version} 273 | pom 274 | 275 | 276 | org.arquillian.universe 277 | arquillian-algeron-pact-provider 278 | ${project.version} 279 | pom 280 | 281 | 282 | org.arquillian.universe 283 | arquillian-algeron-git-publisher 284 | ${project.version} 285 | pom 286 | 287 | 288 | org.arquillian.universe 289 | arquillian-algeron-git-retriever 290 | ${project.version} 291 | pom 292 | 293 | 294 | org.arquillian.universe 295 | arquillian-algeron-maven-retriever 296 | ${project.version} 297 | pom 298 | 299 | 300 | org.arquillian.universe 301 | arquillian-algeron-pact-broker-retriever 302 | ${project.version} 303 | pom 304 | 305 | 306 | org.arquillian.universe 307 | arquillian-ape-nosql-mongodb 308 | ${project.version} 309 | pom 310 | 311 | 312 | org.arquillian.universe 313 | arquillian-ape-nosql-vault 314 | ${project.version} 315 | pom 316 | 317 | 318 | org.arquillian.universe 319 | arquillian-ape-nosql-redis 320 | ${project.version} 321 | pom 322 | 323 | 324 | org.arquillian.universe 325 | arquillian-ape-rest-postman 326 | ${project.version} 327 | pom 328 | 329 | 330 | org.arquillian.universe 331 | arquillian-ape-sql-container-dbunit 332 | ${project.version} 333 | pom 334 | 335 | 336 | org.arquillian.universe 337 | arquillian-ape-sql-standalone-dbunit 338 | ${project.version} 339 | pom 340 | 341 | 342 | org.arquillian.universe 343 | arquillian-ape-sql-standalone-flyway 344 | ${project.version} 345 | pom 346 | 347 | 348 | org.arquillian.universe 349 | arquillian-ape-junit-rule 350 | ${project.version} 351 | pom 352 | 353 | 354 | org.arquillian.universe 355 | arquillian-rusheye 356 | ${project.version} 357 | pom 358 | 359 | 360 | 361 | 362 | 363 | 364 | -------------------------------------------------------------------------------- /arquillian-warp-jsf/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-warp-jsf 13 | Arquillian Warp JSF 14 | pom 15 | 16 | 17 | 18 | 19 | org.arquillian.universe 20 | arquillian-warp 21 | ${project.version} 22 | import 23 | pom 24 | 25 | 26 | 27 | 28 | 29 | 30 | org.arquillian.universe 31 | arquillian-warp 32 | ${project.version} 33 | pom 34 | 35 | 36 | org.jboss.arquillian.extension 37 | arquillian-warp-jsf 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /arquillian-warp/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.arquillian.universe 5 | arquillian-universe-parent 6 | 1.5.0.1-SNAPSHOT 7 | ../pom.xml 8 | 9 | 10 | 4.0.0 11 | 12 | arquillian-warp 13 | Arquillian Warp 14 | pom 15 | 16 | 17 | 18 | 19 | 20 | org.apache.httpcomponents 21 | httpcore 22 | 4.4.12 23 | 24 | 25 | org.arquillian.universe 26 | arquillian-core 27 | ${project.version} 28 | import 29 | pom 30 | 31 | 32 | org.jboss.arquillian.extension 33 | arquillian-warp-bom 34 | ${version.arquillian_warp} 35 | pom 36 | import 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | org.apache.httpcomponents 45 | httpcore 46 | 47 | 48 | 49 | org.arquillian.universe 50 | arquillian-core 51 | ${project.version} 52 | pom 53 | 54 | 55 | org.jboss.arquillian.extension 56 | arquillian-warp 57 | pom 58 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # ---------------------------------------------------------------------------- 3 | # Licensed to the Apache Software Foundation (ASF) under one 4 | # or more contributor license agreements. See the NOTICE file 5 | # distributed with this work for additional information 6 | # regarding copyright ownership. The ASF licenses this file 7 | # to you under the Apache License, Version 2.0 (the 8 | # "License"); you may not use this file except in compliance 9 | # with the License. You may obtain a copy of the License at 10 | # 11 | # http://www.apache.org/licenses/LICENSE-2.0 12 | # 13 | # Unless required by applicable law or agreed to in writing, 14 | # software distributed under the License is distributed on an 15 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | # KIND, either express or implied. See the License for the 17 | # specific language governing permissions and limitations 18 | # under the License. 19 | # ---------------------------------------------------------------------------- 20 | 21 | # ---------------------------------------------------------------------------- 22 | # Maven2 Start Up Batch script 23 | # 24 | # Required ENV vars: 25 | # ------------------ 26 | # JAVA_HOME - location of a JDK home dir 27 | # 28 | # Optional ENV vars 29 | # ----------------- 30 | # M2_HOME - location of maven2's installed home dir 31 | # MAVEN_OPTS - parameters passed to the Java VM when running Maven 32 | # e.g. to debug Maven itself, use 33 | # set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 34 | # MAVEN_SKIP_RC - flag to disable loading of mavenrc files 35 | # ---------------------------------------------------------------------------- 36 | 37 | if [ -z "$MAVEN_SKIP_RC" ] ; then 38 | 39 | if [ -f /etc/mavenrc ] ; then 40 | . /etc/mavenrc 41 | fi 42 | 43 | if [ -f "$HOME/.mavenrc" ] ; then 44 | . "$HOME/.mavenrc" 45 | fi 46 | 47 | fi 48 | 49 | # OS specific support. $var _must_ be set to either true or false. 50 | cygwin=false; 51 | darwin=false; 52 | mingw=false 53 | case "`uname`" in 54 | CYGWIN*) cygwin=true ;; 55 | MINGW*) mingw=true;; 56 | Darwin*) darwin=true 57 | # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home 58 | # See https://developer.apple.com/library/mac/qa/qa1170/_index.html 59 | if [ -z "$JAVA_HOME" ]; then 60 | if [ -x "/usr/libexec/java_home" ]; then 61 | export JAVA_HOME="`/usr/libexec/java_home`" 62 | else 63 | export JAVA_HOME="/Library/Java/Home" 64 | fi 65 | fi 66 | ;; 67 | esac 68 | 69 | if [ -z "$JAVA_HOME" ] ; then 70 | if [ -r /etc/gentoo-release ] ; then 71 | JAVA_HOME=`java-config --jre-home` 72 | fi 73 | fi 74 | 75 | if [ -z "$M2_HOME" ] ; then 76 | ## resolve links - $0 may be a link to maven's home 77 | PRG="$0" 78 | 79 | # need this for relative symlinks 80 | while [ -h "$PRG" ] ; do 81 | ls=`ls -ld "$PRG"` 82 | link=`expr "$ls" : '.*-> \(.*\)$'` 83 | if expr "$link" : '/.*' > /dev/null; then 84 | PRG="$link" 85 | else 86 | PRG="`dirname "$PRG"`/$link" 87 | fi 88 | done 89 | 90 | saveddir=`pwd` 91 | 92 | M2_HOME=`dirname "$PRG"`/.. 93 | 94 | # make it fully qualified 95 | M2_HOME=`cd "$M2_HOME" && pwd` 96 | 97 | cd "$saveddir" 98 | # echo Using m2 at $M2_HOME 99 | fi 100 | 101 | # For Cygwin, ensure paths are in UNIX format before anything is touched 102 | if $cygwin ; then 103 | [ -n "$M2_HOME" ] && 104 | M2_HOME=`cygpath --unix "$M2_HOME"` 105 | [ -n "$JAVA_HOME" ] && 106 | JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 107 | [ -n "$CLASSPATH" ] && 108 | CLASSPATH=`cygpath --path --unix "$CLASSPATH"` 109 | fi 110 | 111 | # For Mingw, ensure paths are in UNIX format before anything is touched 112 | if $mingw ; then 113 | [ -n "$M2_HOME" ] && 114 | M2_HOME="`(cd "$M2_HOME"; pwd)`" 115 | [ -n "$JAVA_HOME" ] && 116 | JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" 117 | fi 118 | 119 | if [ -z "$JAVA_HOME" ]; then 120 | javaExecutable="`which javac`" 121 | if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then 122 | # readlink(1) is not available as standard on Solaris 10. 123 | readLink=`which readlink` 124 | if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then 125 | if $darwin ; then 126 | javaHome="`dirname \"$javaExecutable\"`" 127 | javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" 128 | else 129 | javaExecutable="`readlink -f \"$javaExecutable\"`" 130 | fi 131 | javaHome="`dirname \"$javaExecutable\"`" 132 | javaHome=`expr "$javaHome" : '\(.*\)/bin'` 133 | JAVA_HOME="$javaHome" 134 | export JAVA_HOME 135 | fi 136 | fi 137 | fi 138 | 139 | if [ -z "$JAVACMD" ] ; then 140 | if [ -n "$JAVA_HOME" ] ; then 141 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 142 | # IBM's JDK on AIX uses strange locations for the executables 143 | JAVACMD="$JAVA_HOME/jre/sh/java" 144 | else 145 | JAVACMD="$JAVA_HOME/bin/java" 146 | fi 147 | else 148 | JAVACMD="`which java`" 149 | fi 150 | fi 151 | 152 | if [ ! -x "$JAVACMD" ] ; then 153 | echo "Error: JAVA_HOME is not defined correctly." >&2 154 | echo " We cannot execute $JAVACMD" >&2 155 | exit 1 156 | fi 157 | 158 | if [ -z "$JAVA_HOME" ] ; then 159 | echo "Warning: JAVA_HOME environment variable is not set." 160 | fi 161 | 162 | CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher 163 | 164 | # traverses directory structure from process work directory to filesystem root 165 | # first directory with .mvn subdirectory is considered project base directory 166 | find_maven_basedir() { 167 | 168 | if [ -z "$1" ] 169 | then 170 | echo "Path not specified to find_maven_basedir" 171 | return 1 172 | fi 173 | 174 | basedir="$1" 175 | wdir="$1" 176 | while [ "$wdir" != '/' ] ; do 177 | if [ -d "$wdir"/.mvn ] ; then 178 | basedir=$wdir 179 | break 180 | fi 181 | # workaround for JBEAP-8937 (on Solaris 10/Sparc) 182 | if [ -d "${wdir}" ]; then 183 | wdir=`cd "$wdir/.."; pwd` 184 | fi 185 | # end of workaround 186 | done 187 | echo "${basedir}" 188 | } 189 | 190 | # concatenates all lines of a file 191 | concat_lines() { 192 | if [ -f "$1" ]; then 193 | echo "$(tr -s '\n' ' ' < "$1")" 194 | fi 195 | } 196 | 197 | BASE_DIR=`find_maven_basedir "$(pwd)"` 198 | if [ -z "$BASE_DIR" ]; then 199 | exit 1; 200 | fi 201 | 202 | ########################################################################################## 203 | # Extension to allow automatically downloading the maven-wrapper.jar from Maven-central 204 | # This allows using the maven wrapper in projects that prohibit checking in binary data. 205 | ########################################################################################## 206 | if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then 207 | if [ "$MVNW_VERBOSE" = true ]; then 208 | echo "Found .mvn/wrapper/maven-wrapper.jar" 209 | fi 210 | else 211 | if [ "$MVNW_VERBOSE" = true ]; then 212 | echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." 213 | fi 214 | if [ -n "$MVNW_REPOURL" ]; then 215 | jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar" 216 | else 217 | jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar" 218 | fi 219 | while IFS="=" read key value; do 220 | case "$key" in (wrapperUrl) jarUrl="$value"; break ;; 221 | esac 222 | done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" 223 | if [ "$MVNW_VERBOSE" = true ]; then 224 | echo "Downloading from: $jarUrl" 225 | fi 226 | wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" 227 | if $cygwin; then 228 | wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` 229 | fi 230 | 231 | if command -v wget > /dev/null; then 232 | if [ "$MVNW_VERBOSE" = true ]; then 233 | echo "Found wget ... using wget" 234 | fi 235 | if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then 236 | wget "$jarUrl" -O "$wrapperJarPath" 237 | else 238 | wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" 239 | fi 240 | elif command -v curl > /dev/null; then 241 | if [ "$MVNW_VERBOSE" = true ]; then 242 | echo "Found curl ... using curl" 243 | fi 244 | if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then 245 | curl -o "$wrapperJarPath" "$jarUrl" -f 246 | else 247 | curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f 248 | fi 249 | 250 | else 251 | if [ "$MVNW_VERBOSE" = true ]; then 252 | echo "Falling back to using Java to download" 253 | fi 254 | javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" 255 | # For Cygwin, switch paths to Windows format before running javac 256 | if $cygwin; then 257 | javaClass=`cygpath --path --windows "$javaClass"` 258 | fi 259 | if [ -e "$javaClass" ]; then 260 | if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then 261 | if [ "$MVNW_VERBOSE" = true ]; then 262 | echo " - Compiling MavenWrapperDownloader.java ..." 263 | fi 264 | # Compiling the Java class 265 | ("$JAVA_HOME/bin/javac" "$javaClass") 266 | fi 267 | if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then 268 | # Running the downloader 269 | if [ "$MVNW_VERBOSE" = true ]; then 270 | echo " - Running MavenWrapperDownloader.java ..." 271 | fi 272 | ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") 273 | fi 274 | fi 275 | fi 276 | fi 277 | ########################################################################################## 278 | # End of extension 279 | ########################################################################################## 280 | 281 | export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} 282 | if [ "$MVNW_VERBOSE" = true ]; then 283 | echo $MAVEN_PROJECTBASEDIR 284 | fi 285 | MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" 286 | 287 | # For Cygwin, switch paths to Windows format before running java 288 | if $cygwin; then 289 | [ -n "$M2_HOME" ] && 290 | M2_HOME=`cygpath --path --windows "$M2_HOME"` 291 | [ -n "$JAVA_HOME" ] && 292 | JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` 293 | [ -n "$CLASSPATH" ] && 294 | CLASSPATH=`cygpath --path --windows "$CLASSPATH"` 295 | [ -n "$MAVEN_PROJECTBASEDIR" ] && 296 | MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` 297 | fi 298 | 299 | # Provide a "standardized" way to retrieve the CLI args that will 300 | # work with both Windows and non-Windows executions. 301 | MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" 302 | export MAVEN_CMD_LINE_ARGS 303 | 304 | WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 305 | 306 | exec "$JAVACMD" \ 307 | $MAVEN_OPTS \ 308 | -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ 309 | "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ 310 | ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" 311 | -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- 1 | @REM ---------------------------------------------------------------------------- 2 | @REM Licensed to the Apache Software Foundation (ASF) under one 3 | @REM or more contributor license agreements. See the NOTICE file 4 | @REM distributed with this work for additional information 5 | @REM regarding copyright ownership. The ASF licenses this file 6 | @REM to you under the Apache License, Version 2.0 (the 7 | @REM "License"); you may not use this file except in compliance 8 | @REM with the License. You may obtain a copy of the License at 9 | @REM 10 | @REM http://www.apache.org/licenses/LICENSE-2.0 11 | @REM 12 | @REM Unless required by applicable law or agreed to in writing, 13 | @REM software distributed under the License is distributed on an 14 | @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | @REM KIND, either express or implied. See the License for the 16 | @REM specific language governing permissions and limitations 17 | @REM under the License. 18 | @REM ---------------------------------------------------------------------------- 19 | 20 | @REM ---------------------------------------------------------------------------- 21 | @REM Maven2 Start Up Batch script 22 | @REM 23 | @REM Required ENV vars: 24 | @REM JAVA_HOME - location of a JDK home dir 25 | @REM 26 | @REM Optional ENV vars 27 | @REM M2_HOME - location of maven2's installed home dir 28 | @REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands 29 | @REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending 30 | @REM MAVEN_OPTS - parameters passed to the Java VM when running Maven 31 | @REM e.g. to debug Maven itself, use 32 | @REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 33 | @REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files 34 | @REM ---------------------------------------------------------------------------- 35 | 36 | @REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' 37 | @echo off 38 | @REM set title of command window 39 | title %0 40 | @REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' 41 | @if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% 42 | 43 | @REM set %HOME% to equivalent of $HOME 44 | if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") 45 | 46 | @REM Execute a user defined script before this one 47 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre 48 | @REM check for pre script, once with legacy .bat ending and once with .cmd ending 49 | if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" 50 | if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" 51 | :skipRcPre 52 | 53 | @setlocal 54 | 55 | set ERROR_CODE=0 56 | 57 | @REM To isolate internal variables from possible post scripts, we use another setlocal 58 | @setlocal 59 | 60 | @REM ==== START VALIDATION ==== 61 | if not "%JAVA_HOME%" == "" goto OkJHome 62 | 63 | echo. 64 | echo Error: JAVA_HOME not found in your environment. >&2 65 | echo Please set the JAVA_HOME variable in your environment to match the >&2 66 | echo location of your Java installation. >&2 67 | echo. 68 | goto error 69 | 70 | :OkJHome 71 | if exist "%JAVA_HOME%\bin\java.exe" goto init 72 | 73 | echo. 74 | echo Error: JAVA_HOME is set to an invalid directory. >&2 75 | echo JAVA_HOME = "%JAVA_HOME%" >&2 76 | echo Please set the JAVA_HOME variable in your environment to match the >&2 77 | echo location of your Java installation. >&2 78 | echo. 79 | goto error 80 | 81 | @REM ==== END VALIDATION ==== 82 | 83 | :init 84 | 85 | @REM Find the project base dir, i.e. the directory that contains the folder ".mvn". 86 | @REM Fallback to current working directory if not found. 87 | 88 | set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% 89 | IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir 90 | 91 | set EXEC_DIR=%CD% 92 | set WDIR=%EXEC_DIR% 93 | :findBaseDir 94 | IF EXIST "%WDIR%"\.mvn goto baseDirFound 95 | cd .. 96 | IF "%WDIR%"=="%CD%" goto baseDirNotFound 97 | set WDIR=%CD% 98 | goto findBaseDir 99 | 100 | :baseDirFound 101 | set MAVEN_PROJECTBASEDIR=%WDIR% 102 | cd "%EXEC_DIR%" 103 | goto endDetectBaseDir 104 | 105 | :baseDirNotFound 106 | set MAVEN_PROJECTBASEDIR=%EXEC_DIR% 107 | cd "%EXEC_DIR%" 108 | 109 | :endDetectBaseDir 110 | 111 | IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig 112 | 113 | @setlocal EnableExtensions EnableDelayedExpansion 114 | for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a 115 | @endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% 116 | 117 | :endReadAdditionalConfig 118 | 119 | SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" 120 | set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" 121 | set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain 122 | 123 | set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar" 124 | 125 | FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( 126 | IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B 127 | ) 128 | 129 | @REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central 130 | @REM This allows using the maven wrapper in projects that prohibit checking in binary data. 131 | if exist %WRAPPER_JAR% ( 132 | if "%MVNW_VERBOSE%" == "true" ( 133 | echo Found %WRAPPER_JAR% 134 | ) 135 | ) else ( 136 | if not "%MVNW_REPOURL%" == "" ( 137 | SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar" 138 | ) 139 | if "%MVNW_VERBOSE%" == "true" ( 140 | echo Couldn't find %WRAPPER_JAR%, downloading it ... 141 | echo Downloading from: %DOWNLOAD_URL% 142 | ) 143 | 144 | powershell -Command "&{"^ 145 | "$webclient = new-object System.Net.WebClient;"^ 146 | "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ 147 | "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ 148 | "}"^ 149 | "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ 150 | "}" 151 | if "%MVNW_VERBOSE%" == "true" ( 152 | echo Finished downloading %WRAPPER_JAR% 153 | ) 154 | ) 155 | @REM End of extension 156 | 157 | @REM Provide a "standardized" way to retrieve the CLI args that will 158 | @REM work with both Windows and non-Windows executions. 159 | set MAVEN_CMD_LINE_ARGS=%* 160 | 161 | %MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* 162 | if ERRORLEVEL 1 goto error 163 | goto end 164 | 165 | :error 166 | set ERROR_CODE=1 167 | 168 | :end 169 | @endlocal & set ERROR_CODE=%ERROR_CODE% 170 | 171 | if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost 172 | @REM check for post script, once with legacy .bat ending and once with .cmd ending 173 | if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" 174 | if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" 175 | :skipRcPost 176 | 177 | @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' 178 | if "%MAVEN_BATCH_PAUSE%" == "on" pause 179 | 180 | if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% 181 | 182 | exit /B %ERROR_CODE% 183 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 4.0.0 6 | 7 | 8 | 9 | org.jboss 10 | jboss-parent 11 | 36 12 | 13 | 14 | 15 | 16 | org.arquillian.universe 17 | arquillian-universe-parent 18 | 1.5.0.1-SNAPSHOT 19 | pom 20 | 21 | Arquillian Universe Aggregator 22 | http://arquillian.org 23 | Arquillian Universe 24 | 25 | 26 | jira 27 | http://jira.jboss.com/jira/browse/ARQ 28 | 29 | 30 | 31 | 32 | Apache License, Version 2.0 33 | http://www.apache.org/licenses/LICENSE-2.0.txt 34 | 35 | 36 | 37 | 38 | scm:git:git@github.com:arquillian/arquillian-universe-bom.git 39 | scm:git:ssh://github.com/arquillian/arquillian-universe-bom.git 40 | git://github.com/arquillian/arquillian-universe-bom.git 41 | HEAD 42 | 43 | 44 | 45 | 46 | arquillian.org 47 | Arquillian Community 48 | arquillian.org 49 | http://arquillian.org 50 | 51 | 52 | 53 | 54 | 1.6.0.Final 55 | 2.5.1 56 | 1.18.2 57 | 1.0.0.Alpha3 58 | 2.0.0-rc.4 59 | 2.3.2 60 | 1.0.0 61 | 1.0.5 62 | 1.0.0.Alpha7 63 | 1.1.0.Alpha1 64 | 1.1.0 65 | 1.1.0 66 | 1.1.6.Final 67 | 1.0.4.Final 68 | 1.0.0.Alpha4 69 | 1.0.2 70 | 1.0.0.CR6 71 | 1.6.7 72 | 2.0.0-alpha.7 73 | 1.2.6 74 | 2.0.0 75 | 3.1.4 76 | 3.7.1 77 | 2.5.3 78 | 1.0.0 79 | 4.1.2 80 | 1.0.0 81 | 82 | 83 | 84 | arquillian-core 85 | arquillian-junit 86 | arquillian-junit-standalone 87 | arquillian-testng 88 | arquillian-testng-standalone 89 | arquillian-universe 90 | arquillian-drone 91 | arquillian-graphene 92 | arquillian-graphene-recorder 93 | arquillian-warp 94 | arquillian-warp-jsf 95 | arquillian-transaction-core 96 | arquillian-transaction-jta 97 | arquillian-persistence-core 98 | arquillian-persistence 99 | arquillian-spring 100 | arquillian-spring-transaction 101 | arquillian-spring-persistence 102 | arquillian-spring-warp 103 | arquillian-governor-core 104 | arquillian-governor-jira 105 | arquillian-governor-github 106 | arquillian-governor-redmine 107 | arquillian-governor-skipper 108 | arquillian-governor-ignore 109 | arquillian-byteman 110 | arquillian-jacoco 111 | arquillian-recorder-api 112 | arquillian-recorder 113 | arquillian-rest-core 114 | arquillian-rest-resteasy2 115 | arquillian-rest-resteasy3 116 | arquillian-rest-jaxrs2 117 | arquillian-rest-jersey 118 | arquillian-rest-warp-core 119 | arquillian-rest-warp-resteasy 120 | arquillian-rest-warp-jaxrs2 121 | arquillian-rest-warp-jersey 122 | arquillian-rest-warp-cxf 123 | arquillian-spacelift 124 | arquillian-chameleon 125 | arquillian-cube-core 126 | arquillian-cube-docker 127 | arquillian-cube-openshift 128 | arquillian-cube-containerless 129 | arquillian-cube-kubernetes 130 | arquillian-cube-docker-restassured 131 | arquillian-cukes 132 | arquillian-cube-q-pumba 133 | arquillian-cube-q-simianarmy 134 | arquillian-cube-q-toxic 135 | arquillian-algeron-pact-consumer 136 | arquillian-algeron-pact-provider 137 | arquillian-algeron-git-publisher 138 | arquillian-algeron-git-retriever 139 | arquillian-algeron-maven-retriever 140 | arquillian-algeron-pact-broker-retriever 141 | arquillian-ape-nosql-mongodb 142 | arquillian-ape-nosql-redis 143 | arquillian-ape-nosql-couchbase 144 | arquillian-ape-rest-postman 145 | arquillian-ape-nosql-vault 146 | arquillian-ape-sql-container-dbunit 147 | arquillian-ape-sql-standalone-dbunit 148 | arquillian-ape-sql-standalone-flyway 149 | arquillian-ape-junit-rule 150 | arquillian-rusheye 151 | test 152 | 153 | 154 | 155 | 156 | 157 | 158 | maven-release-plugin 159 | 2.5.3 160 | 161 | @{project.version} 162 | true 163 | false 164 | true 165 | 166 | 167 | 168 | 169 | 170 | 171 | -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /test/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | org.arquillian.universe 6 | arquillian-universe-parent 7 | 1.5.0.1-SNAPSHOT 8 | ../pom.xml 9 | 10 | 11 | 12 | 4.0.0 13 | 14 | 15 | arquillian-test 16 | Arquillian Universe Test 17 | Arquillian Universe Test 18 | 19 | 20 | 21 | 22 | org.arquillian 23 | arquillian-universe 24 | ${project.version} 25 | import 26 | pom 27 | 28 | 29 | 30 | 31 | 32 | 33 | org.arquillian.universe 34 | arquillian-junit 35 | test 36 | pom 37 | 38 | 39 | org.arquillian.universe 40 | arquillian-persistence 41 | test 42 | pom 43 | 44 | 45 | org.arquillian.universe 46 | arquillian-chameleon 47 | test 48 | pom 49 | 50 | 51 | junit 52 | junit 53 | 4.12 54 | test 55 | 56 | 57 | org.slf4j 58 | slf4j-api 59 | 1.7.26 60 | test 61 | 62 | 63 | 64 | 65 | 66 | 67 | maven-compiler-plugin 68 | 3.8.0 69 | 70 | 1.7 71 | 1.7 72 | 73 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /test/src/test/java/org/arquillian/universe/test/SimpleTestCase.java: -------------------------------------------------------------------------------- 1 | package org.arquillian.universe.test; 2 | 3 | import org.jboss.arquillian.container.test.api.Deployment; 4 | import org.jboss.arquillian.junit.Arquillian; 5 | import org.jboss.shrinkwrap.api.ShrinkWrap; 6 | import org.jboss.shrinkwrap.api.spec.WebArchive; 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | //@Ignore("Only to compile api test") 11 | @RunWith(Arquillian.class) 12 | public class SimpleTestCase { 13 | 14 | @Deployment 15 | public static WebArchive test() { 16 | return ShrinkWrap.create(WebArchive.class); 17 | } 18 | 19 | @Test 20 | public void shouldX() {} 21 | } 22 | -------------------------------------------------------------------------------- /test/src/test/resources/arquillian.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | wildfly:9.0.0.Final:managed 9 | 10 | 11 | 12 | --------------------------------------------------------------------------------