[jboss-svn-commits] JBL Code SVN: r8195 - in labs/reportingservices/trunk/dev: . distribs/sar modules/client modules/client/api modules/client/samples modules/common modules/extensions/birtreport

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Dec 10 18:19:08 EST 2006


Author: vsellier
Date: 2006-12-10 18:19:00 -0500 (Sun, 10 Dec 2006)
New Revision: 8195

Modified:
   labs/reportingservices/trunk/dev/distribs/sar/pom.xml
   labs/reportingservices/trunk/dev/modules/client/api/pom.xml
   labs/reportingservices/trunk/dev/modules/client/pom.xml
   labs/reportingservices/trunk/dev/modules/client/samples/pom.xml
   labs/reportingservices/trunk/dev/modules/common/pom.xml
   labs/reportingservices/trunk/dev/modules/extensions/birtreport/pom.xml
   labs/reportingservices/trunk/dev/pom.xml
Log:
inconsistency in module declaration

Modified: labs/reportingservices/trunk/dev/distribs/sar/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/distribs/sar/pom.xml	2006-12-10 23:17:28 UTC (rev 8194)
+++ labs/reportingservices/trunk/dev/distribs/sar/pom.xml	2006-12-10 23:19:00 UTC (rev 8195)
@@ -19,18 +19,18 @@
 		<!-- internal dependencies -->
 		<dependency>
 				<groupId>jboss.reportingservices</groupId>
-				<artifactId>reporting-services-common</artifactId>
+				<artifactId>common</artifactId>
 				<type>jar</type>
 			</dependency>
 			
 			<dependency>
 				<groupId>jboss.reportingservices</groupId>
-				<artifactId>reporting-services-client-api</artifactId>
+				<artifactId>client-api</artifactId>
 				<type>jar</type>
 			</dependency>
 			<dependency>
 				<groupId>jboss.reportingservices</groupId>
-				<artifactId>reporting-services-client-impl</artifactId>
+				<artifactId>client-impl</artifactId>
 				<type>jar</type>
 			</dependency>
 
@@ -108,4 +108,4 @@
         <jboss4x.config>default</jboss4x.config>
         <jboss4x.httplistener.port>8080</jboss4x.httplistener.port>
     </properties>
-</project>
\ No newline at end of file
+</project>

Modified: labs/reportingservices/trunk/dev/modules/client/api/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/modules/client/api/pom.xml	2006-12-10 23:17:28 UTC (rev 8194)
+++ labs/reportingservices/trunk/dev/modules/client/api/pom.xml	2006-12-10 23:19:00 UTC (rev 8195)
@@ -8,7 +8,7 @@
 
 
 	<modelVersion>4.0.0</modelVersion>
-	<artifactId>reporting-services-client-api</artifactId>
+	<artifactId>client-api</artifactId>
 	<name>Client - API</name>
 	<packaging>jar</packaging>
 

Modified: labs/reportingservices/trunk/dev/modules/client/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/modules/client/pom.xml	2006-12-10 23:17:28 UTC (rev 8194)
+++ labs/reportingservices/trunk/dev/modules/client/pom.xml	2006-12-10 23:19:00 UTC (rev 8195)
@@ -19,4 +19,4 @@
 		<module>samples</module>
 	</modules>
 
-</project>
\ No newline at end of file
+</project>

Modified: labs/reportingservices/trunk/dev/modules/client/samples/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/modules/client/samples/pom.xml	2006-12-10 23:17:28 UTC (rev 8194)
+++ labs/reportingservices/trunk/dev/modules/client/samples/pom.xml	2006-12-10 23:19:00 UTC (rev 8195)
@@ -17,11 +17,11 @@
 		<!-- internal dependencies -->
 		<dependency>
 			<groupId>jboss.reportingservices</groupId>
-			<artifactId>reporting-services-client-api</artifactId>
+			<artifactId>client-api</artifactId>
 		</dependency>
 		<dependency>
 			<groupId>jboss.reportingservices</groupId>
-			<artifactId>reporting-services-client-impl</artifactId>
+			<artifactId>client-impl</artifactId>
 		</dependency>
 
 		<!-- external dependencies -->
@@ -72,4 +72,4 @@
 			</plugins>
       </build-->
 	
-</project>
\ No newline at end of file
+</project>

Modified: labs/reportingservices/trunk/dev/modules/common/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/modules/common/pom.xml	2006-12-10 23:17:28 UTC (rev 8194)
+++ labs/reportingservices/trunk/dev/modules/common/pom.xml	2006-12-10 23:19:00 UTC (rev 8195)
@@ -18,4 +18,4 @@
 		<!-- external dependencies -->
 
 	</dependencies>
-</project>
\ No newline at end of file
+</project>

Modified: labs/reportingservices/trunk/dev/modules/extensions/birtreport/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/modules/extensions/birtreport/pom.xml	2006-12-10 23:17:28 UTC (rev 8194)
+++ labs/reportingservices/trunk/dev/modules/extensions/birtreport/pom.xml	2006-12-10 23:19:00 UTC (rev 8195)
@@ -18,7 +18,7 @@
 		<!-- internal dependencies -->
 		<dependency>
 			<groupId>jboss.reportingservices</groupId>
-			<artifactId>reporting-services-common</artifactId>
+			<artifactId>common</artifactId>
 			<scope>provided</scope>
 		</dependency>
 
@@ -30,7 +30,7 @@
 
 		<dependency>
 			<groupId>jboss.reportingservices</groupId>
-			<artifactId>reporting-services-client-api</artifactId>
+			<artifactId>client-api</artifactId>
 			<scope>provided</scope>
 		</dependency>
 

Modified: labs/reportingservices/trunk/dev/pom.xml
===================================================================
--- labs/reportingservices/trunk/dev/pom.xml	2006-12-10 23:17:28 UTC (rev 8194)
+++ labs/reportingservices/trunk/dev/pom.xml	2006-12-10 23:19:00 UTC (rev 8195)
@@ -288,4 +288,4 @@
 		</plugins>
 	</reporting>
 
-</project>
\ No newline at end of file
+</project>




More information about the jboss-svn-commits mailing list