Skip to content

Commit

Permalink
Fixes #261.
Browse files Browse the repository at this point in the history
Added TomEE build profile.
  • Loading branch information
radcortez committed Nov 2, 2014
1 parent f0258d0 commit 73177b0
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -778,6 +778,77 @@
</testResources>
</build>
</profile>
<profile>
<id>tomee-embedded-arquillian</id>
<dependencies>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>arquillian-tomee-embedded</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>tomee-embedded</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>tomee-webservices</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>tomee-jaxrs</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>


<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-el-api</artifactId>
<version>8.0.14</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jasper-el</artifactId>
<version>8.0.14</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<javax.el.ExpressionFactory>org.apache.el.ExpressionFactoryImpl</javax.el.ExpressionFactory>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>tomee-remote-arquillian</id>
<dependencies>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>arquillian-tomee-remote</artifactId>
<version>2.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>apache-tomee</artifactId>
<version>2.0.0-SNAPSHOT</version>
<classifier>plus</classifier>
<type>zip</type>
</dependency>
</dependencies>
</profile>

<!-- Browser profiles. Used for UI testing -->
<profile>
Expand Down

0 comments on commit 73177b0

Please sign in to comment.