Skip to content

Commit

Permalink
ARQ-477 Add Arquillian-Build to dependencyManagement. Add junit Overr…
Browse files Browse the repository at this point in the history
…ide to JBoss Embedded 6 pom
  • Loading branch information
aslakknutsen committed Jun 22, 2011
1 parent cb67d19 commit d6d5e5a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 19 deletions.
6 changes: 5 additions & 1 deletion jbossas-embedded-6/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@

<!-- Versioning -->
<version.org.jboss.jbossas>6.0.0.Final</version.org.jboss.jbossas>
<version.shrinkwrap_shrinkwrap>1.0.0-beta-2</version.shrinkwrap_shrinkwrap>

<!-- Override the managed version from jboss-as-depchain-->
<version.shrinkwrap_shrinkwrap>1.0.0-beta-3</version.shrinkwrap_shrinkwrap>
<version.junit>4.8.1</version.junit>

</properties>

<!-- Dependencies -->
Expand Down Expand Up @@ -109,6 +112,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
<scope>test</scope>
</dependency>

Expand Down
30 changes: 12 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@

<!-- Versioning -->
<version.arquillian_core>1.0.0.CR1-SNAPSHOT</version.arquillian_core>

<!-- override from parent -->
<maven.compiler.target>1.6</maven.compiler.target>
<maven.compiler.source>1.6</maven.compiler.source>


</properties>

Expand All @@ -39,6 +44,13 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-build</artifactId>
<version>${version.arquillian_core}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand All @@ -56,23 +68,5 @@
<module>jbossas-remote-6</module>
</modules>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<inherited>true</inherited>
<configuration>
<source>1.6</source>
<target>1.6</target>
<showDeprecation>false</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
<compilerVersion>1.6</compilerVersion>
<fork>true</fork>
<argLine>-Xmx512M</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit d6d5e5a

Please sign in to comment.