[jbpm-commits] JBoss JBPM SVN: r3389 - projects/report-server/trunk.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Dec 15 07:12:37 EST 2008


Author: heiko.braun at jboss.com
Date: 2008-12-15 07:12:37 -0500 (Mon, 15 Dec 2008)
New Revision: 3389

Modified:
   projects/report-server/trunk/pom.xml
Log:
Strip down reasteasy dependencies to avoid clash with server API's

Modified: projects/report-server/trunk/pom.xml
===================================================================
--- projects/report-server/trunk/pom.xml	2008-12-15 12:08:19 UTC (rev 3388)
+++ projects/report-server/trunk/pom.xml	2008-12-15 12:12:37 UTC (rev 3389)
@@ -1,72 +1,106 @@
 <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">
-   <modelVersion>4.0.0</modelVersion>
-   <name>JBoss jBPM3 - Report (BIRT integration)</name>
-   <groupId>org.jbpm</groupId>
-   <artifactId>report-parent</artifactId>
-   <version>1.0.0-SNAPSHOT</version>
-   <packaging>pom</packaging>
+  <modelVersion>4.0.0</modelVersion>
+  <name>JBoss jBPM3 - Report (BIRT integration)</name>
+  <groupId>org.jbpm</groupId>
+  <artifactId>report-parent</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
 
-   <!-- Parent -->
-   <parent>
-      <groupId>org.jbpm</groupId>
-      <artifactId>jbpm-parent</artifactId>
-      <version>1.0.0.GA</version>
-   </parent>
+  <!-- Parent -->
+  <parent>
+    <groupId>org.jbpm</groupId>
+    <artifactId>jbpm-parent</artifactId>
+    <version>1.0.0.GA</version>
+  </parent>
 
-   <properties>
-      <commons.logging.version>1.1.1</commons.logging.version>
-      <junit.version>3.8.1</junit.version>
-      <resteasy.version>1.0-beta-8</resteasy.version>
-   </properties>
+  <properties>
+    <commons.logging.version>1.1.1</commons.logging.version>
+    <junit.version>3.8.1</junit.version>
+    <resteasy.version>1.0-beta-8</resteasy.version>
+  </properties>
 
-   <modules>
-      <module>core</module>
-      <module>server</module>
-   </modules>
+  <modules>
+    <module>core</module>
+    <module>server</module>
+  </modules>
 
-   <dependencyManagement>
-      <dependencies>
-         <!-- Other -->
-         <dependency>
-            <groupId>commons-logging</groupId>
-            <artifactId>commons-logging</artifactId>
-            <version>${commons.logging.version}</version>
-         </dependency>
+  <dependencyManagement>
+    <dependencies>
+      <!-- Other -->
+      <dependency>
+        <groupId>commons-logging</groupId>
+        <artifactId>commons-logging</artifactId>
+        <version>${commons.logging.version}</version>
+      </dependency>
 
-         <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>${junit.version}</version>
-            <scope>test</scope>
-         </dependency>
+      <dependency>
+        <groupId>junit</groupId>
+        <artifactId>junit</artifactId>
+        <version>${junit.version}</version>
+        <scope>test</scope>
+      </dependency>
 
-         <dependency>
-            <groupId>org.jboss.resteasy</groupId>
-            <artifactId>resteasy-jaxrs</artifactId>
-            <version>${resteasy.version}</version>
-         </dependency>
+      <dependency>
+        <groupId>org.jboss.resteasy</groupId>
+        <artifactId>resteasy-jaxrs</artifactId>
+        <version>${resteasy.version}</version>
+        <exclusions>
+          <exclusion>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>javax.activation</groupId>
+            <artifactId>activation</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>commons-httpclient</groupId>
+            <artifactId>commons-httpclient</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>javax.mail</groupId>
+            <artifactId>mail</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>tjws</groupId>
+            <artifactId>webserver</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>com.sun.xml.bind</groupId>
+            <artifactId>jaxb-impl</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>javax.xml.bind</groupId>
+            <artifactId>jaxb-api</artifactId>
+          </exclusion>
+          <exclusion>
+            <groupId>javax.xml.stream</groupId>
+            <artifactId>stax-api</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
 
-      </dependencies>
-   </dependencyManagement>
+    </dependencies>
+  </dependencyManagement>
 
-   <!-- Repositories -->
-   <repositories>
-      <repository>
-         <id>repository.jboss.org</id>
-         <url>http://repository.jboss.org/maven2</url>
-      </repository>
-      <repository>
-         <id>snapshots.jboss.org</id>
-         <name>JBoss Snapshot Repository</name>
-         <url>http://snapshots.jboss.org/maven2</url>
-         <releases>
-            <enabled>false</enabled>
-         </releases>
-         <snapshots>
-            <enabled>true</enabled>
-         </snapshots>
-      </repository>
-   </repositories>
+  <!-- Repositories -->
+  <repositories>
+    <repository>
+      <id>repository.jboss.org</id>
+      <url>http://repository.jboss.org/maven2</url>
+    </repository>
+    <repository>
+      <id>snapshots.jboss.org</id>
+      <name>JBoss Snapshot Repository</name>
+      <url>http://snapshots.jboss.org/maven2</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
 
 </project>




More information about the jbpm-commits mailing list