[jboss-svn-commits] JBL Code SVN: r35561 - in labs/jbosslabs/labs-3.0-build/integration: sbs and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Oct 19 07:54:13 EDT 2010


Author: lkrzyzanek
Date: 2010-10-19 07:54:12 -0400 (Tue, 19 Oct 2010)
New Revision: 35561

Added:
   labs/jbosslabs/labs-3.0-build/integration/sbs/
   labs/jbosslabs/labs-3.0-build/integration/sbs/pom.xml
Log:
Added root directory for SBS

Added: labs/jbosslabs/labs-3.0-build/integration/sbs/pom.xml
===================================================================
--- labs/jbosslabs/labs-3.0-build/integration/sbs/pom.xml	                        (rev 0)
+++ labs/jbosslabs/labs-3.0-build/integration/sbs/pom.xml	2010-10-19 11:54:12 UTC (rev 35561)
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.community.sbs.plugin</groupId>
+  <artifactId>reports</artifactId>
+
+  <name>SBS plugin: Reports</name>
+  <description>Plugin provides additional reports for JBoss Community</description>
+  <version>1.0.0-SNAPSHOT</version>
+
+  <build>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.6</source>
+          <target>1.6</target>
+        </configuration>
+      </plugin>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>com.jivesoftware</groupId>
+      <artifactId>jive-sbs-employee</artifactId>
+      <version>${sbs.version}</version>
+      <type>jar</type>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>com.jivesoftware</groupId>
+      <artifactId>jive-sbs-employee-all</artifactId>
+      <version>${sbs.version}</version>
+      <type>pom</type>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <version>2.3</version>
+      <type>jar</type>
+      <scope>provided</scope>
+    </dependency>
+    <!-- The following dependencies are for unit testing-->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.4</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <version>1.0</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>cglib</groupId>
+      <artifactId>cglib</artifactId>
+      <version>2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.jmock</groupId>
+      <artifactId>jmock-junit4</artifactId>
+      <version>2.4.0</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changes-plugin</artifactId>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>changes-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>cobertura-maven-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </reporting>
+
+  <properties>
+    <sbs.version>4.5.3</sbs.version>
+  </properties>
+
+
+</project>



More information about the jboss-svn-commits mailing list