Implemented SWS-83: airline sample now uses HSQLDB in memory to test.

Also using Maven2 profiles for the various database settings.
This commit is contained in:
Arjen Poutsma
2007-01-23 19:02:08 +00:00
parent 271277b11c
commit 0a7e736e7f
21 changed files with 307 additions and 81 deletions

View File

@@ -10,13 +10,10 @@
<target name="init">
<typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="urn:maven-artifact-ant">
<classpath>
<pathelement location="${basedir}/../maven-artifact-ant-2.0.4-dep.jar"/>
<pathelement location="${basedir}/../../../maven-artifact-ant-2.0.4-dep.jar"/>
</classpath>
</typedef>
<!-- <artifact:remoteRepository id="java.net" url="https://maven-repository.dev.java.net/nonav/repository" -->
<!-- layout="legacy"/> -->
<artifact:dependencies pathId="generate.classpath">
<dependency groupId="axis" artifactId="axis-ant" version="1.4"/>
<dependency groupId="axis" artifactId="axis" version="1.4"/>
@@ -25,11 +22,7 @@
<artifact:dependencies pathId="compile.classpath">
<dependency groupId="axis" artifactId="axis" version="1.4"/>
</artifact:dependencies>
<!-- -->
<!-- <artifact:dependencies pathId="runtime.classpath"> -->
<!-- <remoteRepository refid="java.net" /> -->
<!-- <dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/> -->
<!-- </artifact:dependencies> -->
</target>
<target name="generate" depends="init">

View File

@@ -9,15 +9,11 @@
<mkdir dir="${bin.dir}"/>
<typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="urn:maven-artifact-ant">
<classpath>
<pathelement location="${basedir}/../maven-artifact-ant-2.0.4-dep.jar"/>
<pathelement location="${basedir}/../../../maven-artifact-ant-2.0.4-dep.jar"/>
</classpath>
</typedef>
<artifact:remoteRepository id="java.net" url="https://maven-repository.dev.java.net/nonav/repository"
layout="legacy" />
<artifact:dependencies pathId="generate.classpath">
<remoteRepository refid="java.net"/>
<dependency groupId="com.sun.xml.ws" artifactId="jaxws-tools" version="EA3"/>
<dependency groupId="com.sun.xml.bind" artifactId="jaxb-xjc" version="2.1-EA2"/>
<dependency groupId="com.sun.xml.stream.buffer" artifactId="streambuffer" version="0.3"/>
@@ -27,12 +23,10 @@
</artifact:dependencies>
<artifact:dependencies pathId="compile.classpath">
<remoteRepository refid="java.net"/>
<dependency groupId="javax.xml.ws" artifactId="jaxws-api" version="2.1-SNAPSHOT"/>
</artifact:dependencies>
<artifact:dependencies pathId="runtime.classpath">
<remoteRepository refid="java.net"/>
<dependency groupId="com.sun.xml.ws" artifactId="jaxws-rt" version="EA3"/>
<dependency groupId="com.sun.xml.bind" artifactId="jaxb-impl" version="2.1-EA2"/>
<dependency groupId="com.sun.xml.bind" artifactId="jaxb-xjc" version="2.1-EA2"/>

View File

@@ -2,7 +2,7 @@ SPRING WEB SERVICES
Client table of contents
---------------------------------------------------
* axis - A client for the airline service written in Java using JAX-RPC (Axis 1).
* axis1 - A client for the airline service written in Java using JAX-RPC (Axis 1).
* cs - A client for the airline service written in C#.
* jax-ws - A client for the airline service written in Java using JAX-WS.
* saaj - Two clients that are written in Java and use SAAJ.

View File

@@ -8,22 +8,17 @@
<target name="init">
<typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="urn:maven-artifact-ant">
<classpath>
<pathelement location="${basedir}/../maven-artifact-ant-2.0.4-dep.jar"/>
<pathelement location="${basedir}/../../../maven-artifact-ant-2.0.4-dep.jar"/>
</classpath>
</typedef>
<artifact:remoteRepository id="java.net" url="https://maven-repository.dev.java.net/nonav/repository"
layout="legacy"/>
<artifact:dependencies pathId="compile.classpath">
<remoteRepository refid="java.net" />
<dependency groupId="javax.xml.soap" artifactId="saaj-api" version="1.3"/>
<dependency groupId="com.sun.xml.wss" artifactId="xws-security" version="2.0-ea2"/>
<dependency groupId="com.sun.org.apache.xml.security" artifactId="xmlsec" version="2.0"/>
</artifact:dependencies>
<artifact:dependencies pathId="runtime.classpath">
<remoteRepository refid="java.net" />
<dependency groupId="com.sun.xml.messaging.saaj" artifactId="saaj-impl" version="1.3"/>
</artifact:dependencies>