[jboss-svn-commits] JBL Code SVN: r7007 - in labs/reportingservices/trunk/dev/modules/engine: . birtreport

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Oct 22 12:06:12 EDT 2006


Author: romainguinot at gmail.com
Date: 2006-10-22 12:06:10 -0400 (Sun, 22 Oct 2006)
New Revision: 7007

Added:
   labs/reportingservices/trunk/dev/modules/engine/birtreport/
   labs/reportingservices/trunk/dev/modules/engine/birtreport/pom.xml
Log:
initial BIRT engine implementation 

Added: labs/reportingservices/trunk/dev/modules/engine/birtreport/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/modules/engine/birtreport/pom.xml	2006-10-22 16:04:59 UTC (rev 7006)
+++ labs/reportingservices/trunk/dev/modules/engine/birtreport/pom.xml	2006-10-22 16:06:10 UTC (rev 7007)
@@ -0,0 +1,196 @@
+<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>jboss.reportingservices</groupId>
+		<artifactId>engine</artifactId>
+		<version>0.2-SNAPSHOT</version>
+	</parent>
+
+
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>engine-BIRT</artifactId>
+	<name>Engine - BIRT</name>
+	<packaging>sar</packaging>
+
+	<dependencies>
+		<!-- internal dependencies -->
+		<dependency>
+			<groupId>jboss.reportingservices</groupId>
+			<artifactId>common</artifactId>
+			<scope>provided</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>jboss.reportingservices</groupId>
+			<artifactId>server-api</artifactId>
+			<scope>provided</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>jboss.reportingservices</groupId>
+			<artifactId>client-api</artifactId>
+			<scope>provided</scope>
+		</dependency>
+
+
+		<!-- JBoss dependencies will be provided at runtime  no need to bundle them -->
+		<dependency>
+			<groupId>jboss</groupId>
+			<artifactId>jboss-system</artifactId>
+			<version>4.0.2</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>jboss</groupId>
+			<artifactId>jboss-remoting</artifactId>
+			<version>1.4.1_final</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>jboss</groupId>
+			<artifactId>jboss-serialization</artifactId>
+			<version>1.0.3.GA</version>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>jboss</groupId>
+			<artifactId>jboss-common</artifactId>
+			<version>4.0.2</version>
+			<scope>provided</scope>
+		</dependency>
+
+
+		<!-- BIRT DEPENDENCIES  -->
+		<dependency>
+			<groupId>org.eclipse.birt</groupId>
+			<artifactId>chartengineapi</artifactId>
+			<version>2.1</version>
+		</dependency>
+		<dependency>
+			<groupId>org.eclipse.birt</groupId>
+			<artifactId>coreapi</artifactId>
+			<version>2.1</version>
+		</dependency>
+		<dependency>
+			<groupId>org.eclipse.birt</groupId>
+			<artifactId>dataadapterapi</artifactId>
+			<version>2.1</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.eclipse.birt</groupId>
+			<artifactId>engineapi</artifactId>
+			<version>2.1</version>
+			<exclusions>
+				<exclusion>
+					<groupId>dom4j</groupId>
+					<artifactId>dom4j</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>org.eclipse.birt</groupId>
+			<artifactId>modelapi</artifactId>
+			<version>2.1</version>
+		</dependency>
+		<dependency>
+			<groupId>org.eclipse.birt</groupId>
+			<artifactId>scriptapi</artifactId>
+			<version>2.1</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.eclipse.birt</groupId>
+			<artifactId>dteapi</artifactId>
+			<version>2.1</version>
+			<scope>runtime</scope>
+		</dependency>
+		<!-- EMF (Eclipse Modeling Framework )  -->
+		<dependency>
+			<groupId>org.eclipse.emf.ecore</groupId>
+			<artifactId>org.eclipse.emf.ecore</artifactId>
+			<version>2.2.0</version>
+		</dependency>
+		<dependency>
+			<groupId>org.eclipse.emf.ecore.xmi</groupId>
+			<artifactId>org.eclipse.emf.ecore.xmi</artifactId>
+			<version>2.2.0</version>
+		</dependency>
+		<dependency>
+			<groupId>org.eclipse.emf.common</groupId>
+			<artifactId>org.eclipse.emf.common</artifactId>
+			<version>2.2.0</version>
+		</dependency>
+
+		<!-- W3C -->
+		<dependency>
+			<groupId>org.w3c</groupId>
+			<artifactId>flute</artifactId>
+			<version>1.3</version>
+		</dependency>
+		<dependency>
+			<groupId>org.w3c</groupId>
+			<artifactId>sac</artifactId>
+			<version>1.3</version>
+		</dependency>
+
+		<!-- Commons -->
+		<dependency>
+			<groupId>commons-codec</groupId>
+			<artifactId>commons-codec</artifactId>
+			<version>1.3</version>
+			<!-- removing unwanted transitive dependencies -->
+			<exclusions>
+				<exclusion>
+					<artifactId>junit</artifactId>
+					<groupId>junit</groupId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>commons-cli</groupId>
+			<artifactId>commons-cli</artifactId>
+			<version>1.0</version>
+			<!-- removing unwanted transitive dependencies -->
+			<exclusions>
+				<exclusion>
+					<artifactId>commons-lang</artifactId>
+					<groupId>commons-lang</groupId>
+				</exclusion>
+				<exclusion>
+					<artifactId>commons-logging</artifactId>
+					<groupId>commons-logging</groupId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+
+		<!-- misc -->
+		<dependency>
+			<groupId>com.lowagie</groupId>
+			<artifactId>itext</artifactId>
+			<version>1.2.3</version>
+		</dependency>
+		<dependency>
+			<groupId>com.ibm</groupId>
+			<artifactId>icu</artifactId>
+			<version>3.4.4.1</version>
+		</dependency>
+		<dependency>
+			<groupId>org.mozilla.rhino</groupId>
+			<artifactId>js</artifactId>
+			<version>1.6R1</version>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>jboss-sar-maven-plugin</artifactId>
+				<extensions>true</extensions>
+			</plugin>
+		</plugins>
+	</build>
+</project>




More information about the jboss-svn-commits mailing list