Author: pferraro
Date: 2009-01-28 14:33:19 -0500 (Wed, 28 Jan 2009)
New Revision: 2240
Modified:
trunk/mod_cluster/pom.xml
Log:
Refreshed dependencies
Modified: trunk/mod_cluster/pom.xml
===================================================================
--- trunk/mod_cluster/pom.xml 2009-01-28 19:25:07 UTC (rev 2239)
+++ trunk/mod_cluster/pom.xml 2009-01-28 19:33:19 UTC (rev 2240)
@@ -1,5 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
-
<parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
@@ -10,10 +10,11 @@
<groupId>org.jboss.native</groupId>
<artifactId>mod-cluster</artifactId>
<version>1.0.0-SNAPSHOT</version>
- <name />
- <description />
- <url />
+ <name>mod_cluster</name>
+ <description></description>
+ <
url>http://jboss.org/mod_cluster</url>
+
<scm>
<
connection>scm:svn:https://svn.jboss.org/repos/jbossnative/trunk/mod_c...
<
developerConnection>scm:svn:https://svn.jboss.org/repos/labs/labs/jbos...
@@ -78,7 +79,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
-
<!-- Unpack requisite build scripts -->
<execution>
<id>unpack-build-scripts</id>
@@ -97,7 +97,6 @@
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
-
<!-- Copy jboss-test JAR -->
<execution>
<id>copy-jboss-test</id>
@@ -125,7 +124,6 @@
<stripVersion>true</stripVersion>
</configuration>
</execution>
-
</executions>
</plugin>
@@ -145,9 +143,7 @@
</executions>
</plugin>
-->
-
</plugins>
-
<pluginManagement>
<plugins>
<plugin>
@@ -157,7 +153,6 @@
</plugin>
</plugins>
</pluginManagement>
-
</build>
<dependencies>
@@ -166,30 +161,21 @@
<artifactId>jboss-ha-server-api</artifactId>
<version>1.1.0.GA</version>
</dependency>
-
<dependency>
<groupId>jboss.web</groupId>
<artifactId>jbossweb</artifactId>
<version>2.1.1.GA</version>
</dependency>
-
<dependency>
<groupId>net.jcip</groupId>
<artifactId>jcip-annotations</artifactId>
<version>1.0</version>
</dependency>
-
<dependency>
<groupId>org.jboss.microcontainer</groupId>
<artifactId>jboss-kernel</artifactId>
- <version>2.0.2.GA</version>
+ <version>2.0.3.GA</version>
</dependency>
-
- <dependency>
- <groupId>org.jboss.logging</groupId>
- <artifactId>jboss-logging-spi</artifactId>
- <version>2.0.5.GA</version>
- </dependency>
<!-- For installation in standalone JBoss Web or Tomcat -->
<dependency>
@@ -217,39 +203,62 @@
<artifactId>jboss-test</artifactId>
<version>1.1.3.GA</version>
<scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ </exclusion>
+ <!-- Latest release still uses jboss-server-manager 1.0.0.GA, which still uses
AS 5.0.0.CR2 -->
+ <exclusion>
+ <groupId>org.jboss.jbossas</groupId>
+ <artifactId>jboss-server-manager</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
+ <groupId>org.jboss.jbossas</groupId>
+ <artifactId>jboss-server-manager</artifactId>
+ <version>1.0.1.GA</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>org.jboss.naming</groupId>
+ <artifactId>jnp-client</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
<groupId>org.jboss.naming</groupId>
<artifactId>jnp-client</artifactId>
- <version>5.0.0.SP1</version>
+ <version>5.0.1.GA</version>
<scope>test</scope>
</dependency>
+
+ <!-- Demo dependencies -->
+ <!-- Use provided scope, until demo is moved to separate module -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.3</version>
- <scope>test</scope>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
- <scope>test</scope>
+ <scope>provided</scope>
</dependency>
<dependency>
- <groupId>org.jboss.jbossas</groupId>
- <artifactId>jboss-server-manager</artifactId>
- <version>1.0.0.GA</version>
- </dependency>
- <dependency>
<groupId>jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.0.9</version>
+ <scope>provided</scope>
</dependency>
<dependency>
<groupId>jfree</groupId>
<artifactId>jcommon</artifactId>
<version>1.0.12</version>
+ <scope>provided</scope>
</dependency>
</dependencies>
@@ -282,8 +291,9 @@
<!-- Execute the Test Build -->
<ant antfile="build-test.xml" target="main"
/>
+ <ant antfile="build-test.xml" target=""/>
<!-- Execute the integration tests that require httpd -->
- <ant antfile="build-test.xml"
target="tests-apache-integration" />
+ <!--ant antfile="build-test.xml"
target="tests-clustering-unit" /-->
</tasks>
</configuration>