[jboss-svn-commits] JBL Code SVN: r37783 - in labs/jbosstm/branches/JBOSSTS_4_16/XTS/sar: META-INF and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Dec 7 22:47:12 EST 2011


Author: zhfeng
Date: 2011-12-07 22:47:12 -0500 (Wed, 07 Dec 2011)
New Revision: 37783

Added:
   labs/jbosstm/branches/JBOSSTS_4_16/XTS/sar/META-INF/jax-ws-catalog.xml
Modified:
   labs/jbosstm/branches/JBOSSTS_4_16/XTS/sar/build.xml
Log:
JBTM-966 update to add jax-ws-catalog.xml in jbossxts.jar

Added: labs/jbosstm/branches/JBOSSTS_4_16/XTS/sar/META-INF/jax-ws-catalog.xml
===================================================================
--- labs/jbosstm/branches/JBOSSTS_4_16/XTS/sar/META-INF/jax-ws-catalog.xml	                        (rev 0)
+++ labs/jbosstm/branches/JBOSSTS_4_16/XTS/sar/META-INF/jax-ws-catalog.xml	2011-12-08 03:47:12 UTC (rev 37783)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="system">
+    <rewriteSystem systemIdStartString="http://www.w3.org/2006/03/addressing" rewritePrefix="classpath:/schemas/wsdl"/>
+</catalog>

Modified: labs/jbosstm/branches/JBOSSTS_4_16/XTS/sar/build.xml
===================================================================
--- labs/jbosstm/branches/JBOSSTS_4_16/XTS/sar/build.xml	2011-12-07 16:59:49 UTC (rev 37782)
+++ labs/jbosstm/branches/JBOSSTS_4_16/XTS/sar/build.xml	2011-12-08 03:47:12 UTC (rev 37783)
@@ -87,6 +87,7 @@
         <mkdir dir="${build.webinf.dir}"/>
         <mkdir dir="${build.metainf.dir}"/>
         <mkdir dir="${build.conf.dir}"/>
+        <copy file="${metainf.dir}/jax-ws-catalog.xml" tofile="${build.metainf.dir}/jax-ws-catalog.xml"/>
     </target>
 
     <!-- compile just 1.1 classes in the sar source -->
@@ -147,7 +148,9 @@
         <unjar src="${lib.dir}/recovery.jar" dest="${build.dir}/tmp/impl"/>
         <unjar src="${lib.dir}/service.jar" dest="${build.dir}/tmp/impl"/>
         <unjar src="${lib.dir}/config.jar" dest="${build.dir}/tmp/impl"/>
-        <jar file="${build.dir}/jbossxts.jar" basedir="${build.dir}/tmp/impl"/>
+		<jar file="${build.dir}/jbossxts.jar" basedir="${build.dir}/tmp/impl">
+			<metainf dir="${build.metainf.dir}"/>
+		</jar>
         <copy file="${build.dir}/jbossxts.jar" tofile="${lib.dir}/jbossxts.jar"/>
         <delete dir="${build.dir}/tmp/impl"/>
     </target>



More information about the jboss-svn-commits mailing list