Skip to content

Instantly share code, notes, and snippets.

@wesleyegberto
Created December 29, 2016 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wesleyegberto/92a572defdb448b524d7a550d02c2112 to your computer and use it in GitHub Desktop.
Save wesleyegberto/92a572defdb448b524d7a550d02c2112 to your computer and use it in GitHub Desktop.
Dependencies to use Arquillian with JUnit

#BOM for Arquillian

Dependencies to use Arquillian with JUnit

<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.jboss.arquillian</groupId>
      <artifactId>arquillian-bom</artifactId>
      <version>1.1.9.Final</version>
      <scope>import</scope>
      <type>pom</type>
    </dependency>
  </dependencies>
</dependencyManagement>

<dependencies>
  <dependency>
    <groupId>org.jboss.arquillian.junit</groupId>
    <artifactId>arquillian-junit-container</artifactId>
    <scope>test</scope>
  </dependency>
  <dependency>
    <groupId>org.jboss.arquillian.container</groupId>
    <artifactId>arquillian-weld-ee-embedded-1.1</artifactId>
    <version>1.0.0.CR9</version>
    <scope>test</scope>
  </dependency>
  <dependency>
    <groupId>org.jboss.weld</groupId>
    <artifactId>weld-core</artifactId>
    <version>2.3.2.Final</version>
    <scope>test</scope>
  </dependency>
</dependencies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment