diff options
| author | Robert Gemmell <robbie@apache.org> | 2013-03-10 22:26:58 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2013-03-10 22:26:58 +0000 |
| commit | 41c444387dd3fb3a5c8ddd7002be621c146609cd (patch) | |
| tree | 86dba6f1bc5f7d2ae69d4503f24d8263318d3443 /qpid/java/jca/example | |
| parent | da3dabe20327d8b87e71292d0a57ae7b27d39a84 (diff) | |
| download | qpid-python-41c444387dd3fb3a5c8ddd7002be621c146609cd.tar.gz | |
QPID-4445: make the jar file produced by the JCA module use 'jca' in its name rather than 'ra', add support for generating maven artifacts for the jar and the packaged rar.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1454935 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/jca/example')
4 files changed, 12 insertions, 4 deletions
diff --git a/qpid/java/jca/example/build-geronimo-properties.xml b/qpid/java/jca/example/build-geronimo-properties.xml index 02ecb53134..a20753117f 100644 --- a/qpid/java/jca/example/build-geronimo-properties.xml +++ b/qpid/java/jca/example/build-geronimo-properties.xml @@ -104,9 +104,11 @@ <path id="run.classpath"> <fileset dir="${lib.dir}"> - <include name="qpid-ra-*.jar"/> + <include name="qpid-jca-*.jar"/> <include name="qpid-client-*.jar"/> <include name="qpid-common-*.jar"/> + <!-- Old jar, for examples compatibility --> + <include name="qpid-ra-*.jar"/> </fileset> <fileset dir="${geronimo.home}/repository/org/apache/geronimo/specs"> <include name="geronimo-j2ee-connector_1.5_spec/2.0.0/geronimo-j2ee-connector_1.5_spec-2.0.0.jar"/> diff --git a/qpid/java/jca/example/build-glassfish-properties.xml b/qpid/java/jca/example/build-glassfish-properties.xml index 94c79be931..90561e70cf 100644 --- a/qpid/java/jca/example/build-glassfish-properties.xml +++ b/qpid/java/jca/example/build-glassfish-properties.xml @@ -59,9 +59,11 @@ <path id="run.classpath"> <fileset dir="${lib.dir}"> - <include name="qpid-ra-*.jar"/> + <include name="qpid-jca-*.jar"/> <include name="qpid-client-*.jar"/> <include name="qpid-common-*.jar"/> + <!-- Old jar, for examples compatibility --> + <include name="qpid-ra-*.jar"/> </fileset> <fileset dir="${glassfish.home}/glassfish/lib/"> diff --git a/qpid/java/jca/example/build-jboss-properties.xml b/qpid/java/jca/example/build-jboss-properties.xml index fd38274630..f79793d9c4 100644 --- a/qpid/java/jca/example/build-jboss-properties.xml +++ b/qpid/java/jca/example/build-jboss-properties.xml @@ -68,9 +68,11 @@ <path id="run.classpath"> <fileset dir="${lib.dir}"> - <include name="qpid-ra-*.jar"/> + <include name="qpid-jca-*.jar"/> <include name="qpid-client-*.jar"/> <include name="qpid-common-*.jar"/> + <!-- Old jar, for examples compatibility --> + <include name="qpid-ra-*.jar"/> </fileset> <fileset dir="${jboss.client}"> <!-- Shortcut to get it working!--> diff --git a/qpid/java/jca/example/build-jboss7-properties.xml b/qpid/java/jca/example/build-jboss7-properties.xml index 157802cc73..e24719ba8e 100644 --- a/qpid/java/jca/example/build-jboss7-properties.xml +++ b/qpid/java/jca/example/build-jboss7-properties.xml @@ -74,9 +74,11 @@ <include name="jboss-client.jar"/> </fileset> <fileset dir="${lib.dir}"> - <include name="qpid-ra-*.jar"/> + <include name="qpid-jca-*.jar"/> <include name="qpid-client-*.jar"/> <include name="qpid-common-*.jar"/> + <!-- Old jar, for examples compatibility --> + <include name="qpid-ra-*.jar"/> </fileset> <fileset dir="${jboss.modules}/org/slf4j/main"> <include name="slf4j-api-1.6.1.jar"/> |
