[jboss-cvs] JBossAS SVN: r86509 - in projects/reloaded/trunk: build and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Mar 31 01:44:38 EDT 2009


Author: wolfc
Date: 2009-03-31 01:44:38 -0400 (Tue, 31 Mar 2009)
New Revision: 86509

Added:
   projects/reloaded/trunk/build/
   projects/reloaded/trunk/build/pom.xml
Log:
JBAS-6675: setup a common build


Added: projects/reloaded/trunk/build/pom.xml
===================================================================
--- projects/reloaded/trunk/build/pom.xml	                        (rev 0)
+++ projects/reloaded/trunk/build/pom.xml	2009-03-31 05:44:38 UTC (rev 86509)
@@ -0,0 +1,61 @@
+<!-- 
+  vi:ts=2:sw=2:expandtab 
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <parent>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>4</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.reloaded</groupId>
+  <artifactId>jboss-reloaded-build</artifactId>
+  <version>0.1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>JBoss Reloaded Common Build Settings</name>
+  <url>http://www.jboss.org</url>
+  <description>
+    The common build settings for all Reloaded components.
+  </description>
+  
+  <build>
+    <outputDirectory>${outputDirectory}</outputDirectory>
+    <testOutputDirectory>${testOutputDirectory}</testOutputDirectory>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.4</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.logging</groupId>
+      <artifactId>jboss-logging-log4j</artifactId>
+      <version>2.0.6.GA</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <profiles>
+    <profile>
+      <id>default</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+      </activation>
+      <properties>
+        <outputDirectory>target/classes</outputDirectory>
+        <testOutputDirectory>target/test-classes</testOutputDirectory>
+      </properties>
+    </profile>
+
+    <profile>
+      <id>eclipse</id>
+      <properties>
+        <outputDirectory>eclipse-target/classes</outputDirectory>
+        <testOutputDirectory>eclipse-target/test-classes</testOutputDirectory>
+      </properties>
+    </profile>
+  </profiles>
+</project>




More information about the jboss-cvs-commits mailing list