Author: objectiser
Date: 2011-02-21 08:26:54 -0500 (Mon, 21 Feb 2011)
New Revision: 1308
Modified:
trunk/distribution/pom.xml
trunk/pom.xml
trunk/qa/hudson-riftsaw-local.sh
trunk/runtime/engine-assembly/pom.xml
trunk/runtime/engine-assembly/src/main/assembly/sar.xml
Log:
RIFTSAW-349 - change dependency as net.sf.saxon is in deprecated maven repo.
Modified: trunk/distribution/pom.xml
===================================================================
--- trunk/distribution/pom.xml 2011-02-21 12:33:13 UTC (rev 1307)
+++ trunk/distribution/pom.xml 2011-02-21 13:26:54 UTC (rev 1308)
@@ -110,20 +110,23 @@
<artifactId>xercesImpl</artifactId>
</dependency>
<dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-dom</artifactId>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
</dependency>
<dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-xpath</artifactId>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <classifier>xpath</classifier>
</dependency>
<dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-xqj</artifactId>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <classifier>dom</classifier>
</dependency>
<dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon</artifactId>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <classifier>xqj</classifier>
</dependency>
<dependency>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2011-02-21 12:33:13 UTC (rev 1307)
+++ trunk/pom.xml 2011-02-21 13:26:54 UTC (rev 1308)
@@ -355,22 +355,25 @@
</dependency>
<dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-dom</artifactId>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <classifier>dom</classifier>
<version>${saxon.version}</version>
</dependency>
<dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-xpath</artifactId>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <classifier>xpath</classifier>
<version>${saxon.version}</version>
</dependency>
<dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-xqj</artifactId>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <classifier>xqj</classifier>
<version>${saxon.version}</version>
</dependency>
<dependency>
- <groupId>net.sf.saxon</groupId>
+ <groupId>net.sourceforge.saxon</groupId>
<artifactId>saxon</artifactId>
<version>${saxon.version}</version>
</dependency>
Modified: trunk/qa/hudson-riftsaw-local.sh
===================================================================
--- trunk/qa/hudson-riftsaw-local.sh 2011-02-21 12:33:13 UTC (rev 1307)
+++ trunk/qa/hudson-riftsaw-local.sh 2011-02-21 13:26:54 UTC (rev 1308)
@@ -4,7 +4,7 @@
MAVEN_OPTS="-Xms512M -Xmx1024M"
-RIFTSAW_PARENT_DIR="/home/jeff/deploy/riftsaw"
+RIFTSAW_PARENT_DIR="/home/gbrown/testing/riftsaw/qa"
DOWNLOAD_DIR="$RIFTSAW_PARENT_DIR/downloads"
JBOSS_VERSION="5.1.0.GA"
Modified: trunk/runtime/engine-assembly/pom.xml
===================================================================
--- trunk/runtime/engine-assembly/pom.xml 2011-02-21 12:33:13 UTC (rev 1307)
+++ trunk/runtime/engine-assembly/pom.xml 2011-02-21 13:26:54 UTC (rev 1308)
@@ -98,22 +98,25 @@
</exclusions>
</dependency>
- <dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-dom</artifactId>
- </dependency>
- <dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-xpath</artifactId>
- </dependency>
- <dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon-xqj</artifactId>
- </dependency>
- <dependency>
- <groupId>net.sf.saxon</groupId>
- <artifactId>saxon</artifactId>
- </dependency>
+ <dependency>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <classifier>xpath</classifier>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <classifier>dom</classifier>
+ </dependency>
+ <dependency>
+ <groupId>net.sourceforge.saxon</groupId>
+ <artifactId>saxon</artifactId>
+ <classifier>xqj</classifier>
+ </dependency>
</dependencies>
Modified: trunk/runtime/engine-assembly/src/main/assembly/sar.xml
===================================================================
--- trunk/runtime/engine-assembly/src/main/assembly/sar.xml 2011-02-21 12:33:13 UTC (rev
1307)
+++ trunk/runtime/engine-assembly/src/main/assembly/sar.xml 2011-02-21 13:26:54 UTC (rev
1308)
@@ -64,10 +64,10 @@
<include>org.jboss.soa.bpel:riftsaw-scheduler-simple</include>
<include>org.jboss.soa.bpel.runtime:riftsaw-uddi</include>
<include>org.jboss.soa.bpel:riftsaw-utils</include>
- <include>net.sf.saxon:saxon</include>
- <include>net.sf.saxon:saxon-dom</include>
- <include>net.sf.saxon:saxon-xpath</include>
- <include>net.sf.saxon:saxon-xqj</include>
+ <include>net.sourceforge.saxon:saxon</include>
+ <include>net.sourceforge.saxon:saxon:jar:xpath</include>
+ <include>net.sourceforge.saxon:saxon:jar:dom</include>
+ <include>net.sourceforge.saxon:saxon:jar:xqj</include>
<include>org.springframework:spring</include>
<include>org.apache.xmlbeans:xmlbeans</include>
</includes>
Show replies by date