[jboss-svn-commits] JBL Code SVN: r6464 - in labs/reportingservices/trunk: . dev dev/distribs dev/distribs/deployer dev/distribs/sar dev/distribs/sar/src/main/assembly

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Sep 28 18:41:28 EDT 2006


Author: cyril.joui at supinfo.com
Date: 2006-09-28 18:41:22 -0400 (Thu, 28 Sep 2006)
New Revision: 6464

Added:
   labs/reportingservices/trunk/dev/distribs/deployer/
   labs/reportingservices/trunk/dev/distribs/deployer/pom.xml
Modified:
   labs/reportingservices/trunk/dev/distribs/pom.xml
   labs/reportingservices/trunk/dev/distribs/sar/pom.xml
   labs/reportingservices/trunk/dev/distribs/sar/src/main/assembly/sar.xml
   labs/reportingservices/trunk/dev/pom.xml
   labs/reportingservices/trunk/pom.xml
Log:
Bug fixed : deploy (problem with jfreereport 0.8.6 !!!! => you have to look this in deeper)
(mvn install deploys on JBoss)

Added: labs/reportingservices/trunk/dev/distribs/deployer/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/distribs/deployer/pom.xml	2006-09-28 16:28:58 UTC (rev 6463)
+++ labs/reportingservices/trunk/dev/distribs/deployer/pom.xml	2006-09-28 22:41:22 UTC (rev 6464)
@@ -0,0 +1,48 @@
+<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>distribs</artifactId>
+		<version>0.2-SNAPSHOT</version>
+	</parent>
+
+
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>deployer</artifactId>
+	<name>Distribs - Deployers</name>
+	<packaging>pom</packaging>
+
+
+	<build>
+		<plugins>
+            <!-- deploy sar -->
+            <plugin>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <phase>install</phase>
+                        <configuration>
+                            <tasks>
+                            	<delete dir="${JBOSS_HOME}/server/${jboss4x.config}/deploy/reporting-services.sar" />
+                                <copy todir="${JBOSS_HOME}/server/${jboss4x.config}/deploy/reporting-services.sar">
+                                    <fileset dir="../sar/target/reporting-services-sar.dir" includes="**/*" excludes="**/sar*.jar" />
+                                </copy>
+                            </tasks>
+                        </configuration>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+		</plugins>
+	</build>
+
+
+    <properties>
+        <jboss4x.config>default</jboss4x.config>
+        <jboss4x.httplistener.port>8080</jboss4x.httplistener.port>
+    </properties>
+</project>
\ No newline at end of file

Modified: labs/reportingservices/trunk/dev/distribs/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/distribs/pom.xml	2006-09-28 16:28:58 UTC (rev 6463)
+++ labs/reportingservices/trunk/dev/distribs/pom.xml	2006-09-28 22:41:22 UTC (rev 6464)
@@ -16,6 +16,7 @@
 
     <modules>
         <module>sar</module>
+        <module>deployer</module>
     </modules>
 
 </project>
\ No newline at end of file

Modified: labs/reportingservices/trunk/dev/distribs/sar/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/distribs/sar/pom.xml	2006-09-28 16:28:58 UTC (rev 6463)
+++ labs/reportingservices/trunk/dev/distribs/sar/pom.xml	2006-09-28 22:41:22 UTC (rev 6464)
@@ -57,10 +57,10 @@
 		<finalName>reporting-services</finalName>
 
 		<plugins>
+			<!-- assemble sar -->
 			<plugin>
 				<artifactId>maven-assembly-plugin</artifactId>
 				<configuration>
-					<finalName>reporting-services.sar</finalName>
 					<descriptors>
 						<descriptor>
 							src/main/assembly/sar.xml
@@ -79,4 +79,9 @@
 		</plugins>
 	</build>
 
+
+    <properties>
+        <jboss4x.config>default</jboss4x.config>
+        <jboss4x.httplistener.port>8080</jboss4x.httplistener.port>
+    </properties>
 </project>
\ No newline at end of file

Modified: labs/reportingservices/trunk/dev/distribs/sar/src/main/assembly/sar.xml
===================================================================
--- labs/reportingservices/trunk/dev/distribs/sar/src/main/assembly/sar.xml	2006-09-28 16:28:58 UTC (rev 6463)
+++ labs/reportingservices/trunk/dev/distribs/sar/src/main/assembly/sar.xml	2006-09-28 22:41:22 UTC (rev 6464)
@@ -45,9 +45,8 @@
     <dependencySets>
         <dependencySet>
         	<excludes>
-        		<exclude>sar*</exclude>
+        		<exclude>*sar*.jar</exclude>
         	</excludes>
-        	<outputDirectory>lib</outputDirectory>
         </dependencySet>
     </dependencySets>
 </assembly>
\ No newline at end of file

Modified: labs/reportingservices/trunk/dev/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/pom.xml	2006-09-28 16:28:58 UTC (rev 6463)
+++ labs/reportingservices/trunk/dev/pom.xml	2006-09-28 22:41:22 UTC (rev 6464)
@@ -146,14 +146,14 @@
 			<dependency>
 				<groupId>jfree</groupId>
 				<artifactId>jfreereport</artifactId>
-				<version>0.8.6</version>
+				<version>0.8.5-5</version>
 			</dependency>
 
 			<!-- jasperreports -->
 			<dependency>
 				<groupId>jasperreports</groupId>
 				<artifactId>jasperreports</artifactId>
-				<version>1.2.6</version>
+				<version>1.2.5</version>
 			</dependency>
 
 

Modified: labs/reportingservices/trunk/pom.xml
===================================================================
--- labs/reportingservices/trunk/pom.xml	2006-09-28 16:28:58 UTC (rev 6463)
+++ labs/reportingservices/trunk/pom.xml	2006-09-28 22:41:22 UTC (rev 6464)
@@ -319,6 +319,36 @@
 					<version>2.3</version>
 					<scope>provided</scope>
 				</dependency>
+				<dependency>
+					<groupId>xml-apis</groupId>
+					<artifactId>xml-apis</artifactId>
+					<version>1.3.02</version>
+					<scope>provided</scope>
+				</dependency>
+				<dependency>
+					<groupId>bsf</groupId>
+					<artifactId>bsf</artifactId>
+					<version>2.3.0</version>
+					<scope>provided</scope>
+				</dependency>
+				<dependency>
+					<groupId>bsh</groupId>
+					<artifactId>bsh</artifactId>
+					<version>2.0b1</version>
+					<scope>provided</scope>
+				</dependency>
+				<dependency>
+					<groupId>log4j</groupId>
+					<artifactId>log4j</artifactId>
+					<version>1.2.12</version>
+					<scope>provided</scope>
+				</dependency>
+				<dependency>
+					<groupId>avalon-framework</groupId>
+					<artifactId>avalon-framework</artifactId>
+					<version>4.1.3</version>
+					<scope>provided</scope>
+				</dependency>
 				<!-- 
 					<dependency>
 					<groupId>xml-apis</groupId>




More information about the jboss-svn-commits mailing list