Skip to content

Instantly share code, notes, and snippets.

@mojavelinux
Created April 25, 2012 02:13
Show Gist options
  • Select an option

  • Save mojavelinux/2485549 to your computer and use it in GitHub Desktop.

Select an option

Save mojavelinux/2485549 to your computer and use it in GitHub Desktop.
Maven profile for TomEE embedded, managed and remote adapters
<profile>
<id>arquillian-tomee-embedded</id>
<dependencies>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>arquillian-tomee-embedded</artifactId>
<version>1.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>arquillian-tomee-managed</id>
<dependencies>
<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-6.0</artifactId>
<version>1.0.0.Final</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>arquillian-tomee-managed</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
<profile>
<id>arquillian-tomee-remote</id>
<dependencies>
<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-6.0</artifactId>
<version>1.0.0.Final</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>arquillian-tomee-remote</artifactId>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment