[exo-jcr-commits] exo-jcr SVN: r1992 - in kernel/trunk: exo.kernel.commons and 1 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Mar 3 11:33:07 EST 2010


Author: dkatayev
Date: 2010-03-03 11:33:07 -0500 (Wed, 03 Mar 2010)
New Revision: 1992

Modified:
   kernel/trunk/exo.kernel.commons/pom.xml
   kernel/trunk/exo.kernel.component.ext.cache.impl.jboss.v3/pom.xml
   kernel/trunk/pom.xml
Log:
EXOJCR-550 slf4j-log4j and log4j scope changed to <test>; except exo.kernel.commons (need for compilation)

Modified: kernel/trunk/exo.kernel.commons/pom.xml
===================================================================
--- kernel/trunk/exo.kernel.commons/pom.xml	2010-03-03 15:57:01 UTC (rev 1991)
+++ kernel/trunk/exo.kernel.commons/pom.xml	2010-03-03 16:33:07 UTC (rev 1992)
@@ -45,6 +45,7 @@
       <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
+         <scope>compile</scope>
       </dependency>
       <dependency>
          <groupId>org.slf4j</groupId>
@@ -53,6 +54,7 @@
       <dependency>
          <groupId>log4j</groupId>
          <artifactId>log4j</artifactId>
+         <scope>compile</scope>
       </dependency>
    </dependencies>
 </project>

Modified: kernel/trunk/exo.kernel.component.ext.cache.impl.jboss.v3/pom.xml
===================================================================
--- kernel/trunk/exo.kernel.component.ext.cache.impl.jboss.v3/pom.xml	2010-03-03 15:57:01 UTC (rev 1991)
+++ kernel/trunk/exo.kernel.component.ext.cache.impl.jboss.v3/pom.xml	2010-03-03 16:33:07 UTC (rev 1992)
@@ -1,64 +1,83 @@
-<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>
+<!--
 
-	<parent>
-		<groupId>org.exoplatform.kernel</groupId>
-		<artifactId>kernel-parent</artifactId>
-		<version>2.2.1-GA-SNAPSHOT</version>
-	</parent>
+    Copyright (C) 2009 eXo Platform SAS.
 
-	<artifactId>exo.kernel.component.ext.cache.impl.jboss.v3</artifactId>
-	<name>eXo Kernel :: Cache Extension :: JBoss Cache Implementation</name>
-	<description>JBoss Cache Implementation for the Cache Service</description>
+    This is free software; you can redistribute it and/or modify it
+    under the terms of the GNU Lesser General Public License as
+    published by the Free Software Foundation; either version 2.1 of
+    the License, or (at your option) any later version.
 
-	<dependencies>
-		<dependency>
-			<groupId>org.exoplatform.tool</groupId>
-			<artifactId>exo.tool.framework.junit</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.exoplatform.kernel</groupId>
-			<artifactId>exo.kernel.commons</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.exoplatform.kernel</groupId>
-			<artifactId>exo.kernel.container</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.exoplatform.kernel</groupId>
-			<artifactId>exo.kernel.component.cache</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>org.jboss.cache</groupId>
-			<artifactId>jbosscache-core</artifactId>
-		</dependency>
-	</dependencies>
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-surefire-plugin</artifactId>
-				<configuration>
-					<systemProperties>
-						<!-- We add this system property due to some incompatibility between IPv6 and 
+    This software is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this software; if not, write to the Free
+    Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+    02110-1301 USA, or see the FSF site: http://www.fsf.org.
+
+-->
+<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>
+   <parent>
+      <groupId>org.exoplatform.kernel</groupId>
+      <artifactId>kernel-parent</artifactId>
+      <version>2.2.1-GA-SNAPSHOT</version>
+   </parent>
+   <artifactId>exo.kernel.component.ext.cache.impl.jboss.v3</artifactId>
+   <name>eXo Kernel :: Cache Extension :: JBoss Cache Implementation</name>
+   <description>JBoss Cache Implementation for the Cache Service</description>
+   <dependencies>
+      <dependency>
+         <groupId>org.exoplatform.tool</groupId>
+         <artifactId>exo.tool.framework.junit</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.commons</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.container</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.exoplatform.kernel</groupId>
+         <artifactId>exo.kernel.component.cache</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.cache</groupId>
+         <artifactId>jbosscache-core</artifactId>
+      </dependency>
+   </dependencies>
+   <build>
+      <plugins>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+               <systemProperties>
+                  <!-- We add this system property due to some incompatibility between IPv6 and 
 						some JVM of Linux distributions such as Ubuntu and Fedora-->
-						<property>
-							<name>java.net.preferIPv4Stack</name>
-							<value>true</value>
-						</property>
-						<!-- Avoid the firewall -->
-						<property>
-							<name>bind.address</name>
-							<value>127.0.0.1</value>
-						</property>
-						<property>
-							<name>jgroups.stack</name>
-							<value>udp</value>
-						</property>
-
-					</systemProperties>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
-</project>
+                  <property>
+                     <name>java.net.preferIPv4Stack</name>
+                     <value>true</value>
+                  </property>
+                  <!-- Avoid the firewall -->
+                  <property>
+                     <name>bind.address</name>
+                     <value>127.0.0.1</value>
+                  </property>
+                  <property>
+                     <name>jgroups.stack</name>
+                     <value>udp</value>
+                  </property>
+               </systemProperties>
+            </configuration>
+         </plugin>
+      </plugins>
+   </build>
+</project>
\ No newline at end of file

Modified: kernel/trunk/pom.xml
===================================================================
--- kernel/trunk/pom.xml	2010-03-03 15:57:01 UTC (rev 1991)
+++ kernel/trunk/pom.xml	2010-03-03 16:33:07 UTC (rev 1992)
@@ -37,7 +37,7 @@
 
    <properties>
       <exo.product.name>exo-kernel</exo.product.name>
-      <exo.product.specification>2.2</exo.product.specification>
+      <exo.product.specification>2.2</exo.product.specification>
       <org.exoplatform.framework.junit.version>1.2.1-GA</org.exoplatform.framework.junit.version>
       <forkMode>always</forkMode>
    </properties>
@@ -116,16 +116,19 @@
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
             <version>1.5.8</version>
+            <scope>test</scope>
          </dependency>
          <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-log4j12</artifactId>
             <version>1.5.8</version>
+            <scope>test</scope>
          </dependency>
          <dependency>
             <groupId>log4j</groupId>
             <artifactId>log4j</artifactId>
             <version>1.2.14</version>
+            <scope>test</scope>
          </dependency>
          <dependency>
             <groupId>xml-apis</groupId>



More information about the exo-jcr-commits mailing list