Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 30 additions & 2 deletions ejb31-jbembedded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

<!-- Parent -->
<parent>
<groupId>org.jboss.arquillian.examples</groupId>
<groupId>org.arquillian.example</groupId>
<artifactId>parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -19,6 +19,21 @@
<name>Arquillian Examples EJB3.1 JBoss AS 6 Embedded</name>
<description>Simple Arquillian EJB3.1 JBoss AS 6 Embedded Project</description>

<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

<!-- Properties -->
<properties>
<version.junit>4.8.2</version.junit>
Expand Down Expand Up @@ -78,6 +93,19 @@
<dependencyManagement>
<dependencies>

<!-- the jboass as depchain below brings in the wrong version of
shrinkwrap so we override here -->
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-impl-base</artifactId>
<version>1.0.0-beta-3</version>
</dependency>
<dependency>
<groupId>org.jboss.shrinkwrap</groupId>
<artifactId>shrinkwrap-api</artifactId>
<version>1.0.0-beta-3</version>
</dependency>

<!-- org.jboss.jbossas -->
<dependency>
<groupId>org.jboss.jbossas</groupId>
Expand Down