Skip to content

Commit 73177b0

Browse files
committed
Fixes #261.
Added TomEE build profile.
1 parent f0258d0 commit 73177b0

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed

pom.xml

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -778,6 +778,77 @@
778778
</testResources>
779779
</build>
780780
</profile>
781+
<profile>
782+
<id>tomee-embedded-arquillian</id>
783+
<dependencies>
784+
<dependency>
785+
<groupId>org.apache.openejb</groupId>
786+
<artifactId>arquillian-tomee-embedded</artifactId>
787+
<version>2.0.0-SNAPSHOT</version>
788+
</dependency>
789+
<dependency>
790+
<groupId>org.apache.openejb</groupId>
791+
<artifactId>tomee-embedded</artifactId>
792+
<version>2.0.0-SNAPSHOT</version>
793+
</dependency>
794+
<dependency>
795+
<groupId>org.apache.openejb</groupId>
796+
<artifactId>tomee-webservices</artifactId>
797+
<version>2.0.0-SNAPSHOT</version>
798+
</dependency>
799+
<dependency>
800+
<groupId>org.apache.openejb</groupId>
801+
<artifactId>tomee-jaxrs</artifactId>
802+
<version>2.0.0-SNAPSHOT</version>
803+
</dependency>
804+
805+
806+
<dependency>
807+
<groupId>org.apache.tomcat</groupId>
808+
<artifactId>tomcat-el-api</artifactId>
809+
<version>8.0.14</version>
810+
</dependency>
811+
<dependency>
812+
<groupId>org.apache.tomcat</groupId>
813+
<artifactId>tomcat-jasper-el</artifactId>
814+
<version>8.0.14</version>
815+
</dependency>
816+
<dependency>
817+
<groupId>org.apache.commons</groupId>
818+
<artifactId>commons-lang3</artifactId>
819+
<version>3.3.2</version>
820+
</dependency>
821+
</dependencies>
822+
<build>
823+
<plugins>
824+
<plugin>
825+
<artifactId>maven-surefire-plugin</artifactId>
826+
<configuration>
827+
<systemPropertyVariables>
828+
<javax.el.ExpressionFactory>org.apache.el.ExpressionFactoryImpl</javax.el.ExpressionFactory>
829+
</systemPropertyVariables>
830+
</configuration>
831+
</plugin>
832+
</plugins>
833+
</build>
834+
</profile>
835+
<profile>
836+
<id>tomee-remote-arquillian</id>
837+
<dependencies>
838+
<dependency>
839+
<groupId>org.apache.openejb</groupId>
840+
<artifactId>arquillian-tomee-remote</artifactId>
841+
<version>2.0.0-SNAPSHOT</version>
842+
</dependency>
843+
<dependency>
844+
<groupId>org.apache.openejb</groupId>
845+
<artifactId>apache-tomee</artifactId>
846+
<version>2.0.0-SNAPSHOT</version>
847+
<classifier>plus</classifier>
848+
<type>zip</type>
849+
</dependency>
850+
</dependencies>
851+
</profile>
781852

782853
<!-- Browser profiles. Used for UI testing -->
783854
<profile>

0 commit comments

Comments
 (0)