Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding jbossas-remote profile
  • Loading branch information
agoncal committed Jan 13, 2014
1 parent 65b7d72 commit 3b853fc
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion pom.xml
Expand Up @@ -145,7 +145,38 @@
</profile>

<profile>
<id>tomee1</id>
<id>jbossas-remote</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>${version.javaee}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>${version.derby}</version>
</dependency>
<dependency>
<groupId>org.jboss.as</groupId>
<artifactId>jboss-as-arquillian-container-remote</artifactId>
<version>${version.arquillian.jboss.managed}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.protocol</groupId>
<artifactId>arquillian-protocol-servlet</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</profile>

<profile>
<id>tomee-embedded</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
Expand Down

0 comments on commit 3b853fc

Please sign in to comment.