You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2007/10/25 05:13:07 UTC

svn commit: r588122 - in /incubator/tuscany/java/sca/demos: mortgage-creditcheck/src/main/resources/META-INF/ xml-bigbank/ xml-bigbank/src/main/resources/

Author: rfeng
Date: Wed Oct 24 20:13:05 2007
New Revision: 588122

URL: http://svn.apache.org/viewvc?rev=588122&view=rev
Log:
Merge the license header changes from 1.0.1 branch

Removed:
    incubator/tuscany/java/sca/demos/mortgage-creditcheck/src/main/resources/META-INF/
Modified:
    incubator/tuscany/java/sca/demos/xml-bigbank/build.xml
    incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/accounts.xml
    incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/customer.xsd
    incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/quotes.xml

Modified: incubator/tuscany/java/sca/demos/xml-bigbank/build.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/demos/xml-bigbank/build.xml?rev=588122&r1=588121&r2=588122&view=diff
==============================================================================
--- incubator/tuscany/java/sca/demos/xml-bigbank/build.xml (original)
+++ incubator/tuscany/java/sca/demos/xml-bigbank/build.xml Wed Oct 24 20:13:05 2007
@@ -1,3 +1,4 @@
+<?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
@@ -16,51 +17,154 @@
  * specific language governing permissions and limitations
  * under the License.    
 -->
-<project name="xml-bigbank" default="compile">
-	<property name="test.class" value="bigbank.BigBankClient" />
-	<property name="test.jar" value="demo-xml-bigbank.jar" />
+<project name="demo-xml-bigbank" default="compile">
 
-	<target name="init">
-		<mkdir dir="target/classes" />
-	</target>
+    <target name="compile">
+        <javac srcdir="src/main/java" destdir="target/classes" debug="on" source="1.5" target="1.5">
+            <classpath>
+                <fileset refid="tuscany.jars"/>
+                <fileset refid="3rdparty.jars"/>
+            </classpath>
+        </javac>
+        <copy todir="target/classes">
+            <fileset dir="src/main/resources"/>
+        </copy>
+        <jar destfile="target/demo-xml-bigbank.jar" basedir="target/classes">
+            <manifest>
+                <attribute name="Main-Class" value="bigbank.BigBankClient"/>
+            </manifest>
+        </jar>
+    </target>
 
-	<target name="compile" depends="init">
-		<javac srcdir="src/main/java" destdir="target/classes" debug="on" source="1.5" target="1.5">
-			<classpath>
-				<pathelement location="../../lib/tuscany-sca-manifest.jar" />
-			</classpath>
-		</javac>
-		<copy todir="target/classes">
-			<fileset dir="src/main/resources" />
-		</copy>
-		<jar destfile="target/${test.jar}" basedir="target/classes">
-			<manifest>
-				<attribute name="Main-Class" value="${test.class}" />
-			</manifest>
-		</jar>
-	</target>
+    <target name="run">
+        <java classname="bigbank.BigBankClient" fork="true">
+            <classpath>
+                <pathelement location="target/demo-xml-bigbank.jar"/>
+                <fileset refid="tuscany.jars"/>
+                <fileset refid="3rdparty.jars"/>
+            </classpath>
+        </java>
+    </target>
 
-	<target name="run-classes">
-		<java classname="${test.class}" fork="true">
-			<classpath>
-				<pathelement path="target/classes" />
-				<pathelement location="../../lib/tuscany-sca-manifest.jar" />
-			</classpath>
-		</java>
-	</target>
+    <target name="clean">
+        <delete quiet="true" includeemptydirs="true">
+            <fileset dir="target"/>
+        </delete>
+    </target>
 
-	<target name="run">
-		<java classname="${test.class}" fork="true">
-			<classpath>
-				<pathelement path="target/${test.jar}" />
-				<pathelement location="../../lib/tuscany-sca-manifest.jar" />
-			</classpath>
-		</java>
-	</target>
+    <fileset id="tuscany.jars" dir="../../modules">
+        <include name="tuscany-binding-ws-axis2-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-interface-java-xml-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-binding-sca-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-assembly-xml-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-interface-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-implementation-xquery-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-implementation-java-xml-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-binding-feed-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-contribution-impl-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-definitions-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-contribution-namespace-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-contribution-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-definitions-xml-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-host-http-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-binding-ws-xml-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-sca-api-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-policy-logging-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-assembly-xsd-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-interface-wsdl-xml-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-assembly-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-core-databinding-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-core-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-host-embedded-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-databinding-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-host-tomcat-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-implementation-java-runtime-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-node-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-implementation-java-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-binding-ws-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-interface-wsdl-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-contribution-java-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-policy-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-binding-sca-xml-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-core-spi-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-domain-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-node-api-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-interface-java-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-databinding-axiom-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-policy-security-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-domain-api-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-databinding-saxon-1.0.1-incubating-SNAPSHOT.jar"/>
+        <include name="tuscany-policy-xml-1.0.1-incubating-SNAPSHOT.jar"/>
+    </fileset>
+    <fileset id="3rdparty.jars" dir="../../lib">
+        <include name="axiom-dom-1.2.5.jar"/>
+        <include name="rome-0.9.jar"/>
+        <include name="log4j-1.2.13.jar"/>
+        <include name="axis2-kernel-1.3.jar"/>
+        <include name="rampart-core-1.3.jar"/>
+        <include name="rampart-policy-1.3.jar"/>
+        <include name="rampart-trust-1.3.jar"/>
+        <include name="commons-logging-1.1.jar"/>
+        <include name="opensaml-1.1.jar"/>
+        <include name="geronimo-activation_1.1_spec-1.0-M1.jar"/>
+        <include name="axiom-impl-1.2.5.jar"/>
+        <include name="xalan-2.7.0.jar"/>
+        <include name="tuscany-sdo-lib-1.0-incubating.jar"/>
+        <include name="annotations-api-6.0.10.jar"/>
+        <include name="axis2-adb-1.3.jar"/>
+        <include name="tuscany-sdo-api-r2.1-1.0-incubating.jar"/>
+        <include name="ecore-xmi-2.2.3.jar"/>
+        <include name="neethi-2.0.2.jar"/>
+        <include name="axis2-codegen-1.3.jar"/>
+        <include name="bcprov-jdk15-132.jar"/>
+        <include name="activation-1.1.jar"/>
+        <include name="common-2.2.3.jar"/>
+        <include name="xsd-2.2.3.jar"/>
+        <include name="catalina-6.0.10.jar"/>
+        <include name="cglib-nodep-2.1_3.jar"/>
+        <include name="wsdl4j-1.6.2.jar"/>
+        <include name="wss4j-1.5.3.jar"/>
+        <include name="commons-fileupload-1.1.1.jar"/>
+        <include name="axis2-mtompolicy-1.3.jar"/>
+        <include name="stax-api-1.0-2.jar"/>
+        <include name="annogen-0.1.0.jar"/>
+        <include name="commons-collections-3.1.jar"/>
+        <include name="xbean-2.1.0.jar"/>
+        <include name="xml-apis-1.3.03.jar"/>
+        <include name="axis2-xmlbeans-1.3.jar"/>
+        <include name="backport-util-concurrent-2.2.jar"/>
+        <include name="commons-codec-1.3.jar"/>
+        <include name="axis2-adb-codegen-1.3.jar"/>
+        <include name="httpcore-4.0-alpha5.jar"/>
+        <include name="mail-1.4.jar"/>
+        <include name="axis2-java2wsdl-1.3.jar"/>
+        <include name="ant-launcher-1.7.0.jar"/>
+        <include name="woden-1.0-incubating-M7b.jar"/>
+        <include name="jaxen-1.1-beta-10.jar"/>
+        <include name="ant-1.7.0.jar"/>
+        <include name="wstx-asl-3.2.1.jar"/>
+        <include name="xmlsec-1.4.0.jar"/>
+        <include name="commons-discovery-0.2.jar"/>
+        <include name="ant-nodeps-1.7.0.jar"/>
+        <include name="geronimo-jms_1.1_spec-1.1.jar"/>
+        <include name="servlet-api-2.5.jar"/>
+        <include name="geronimo-javamail_1.4_spec-1.0-M1.jar"/>
+        <include name="jdom-1.0.jar"/>
+        <include name="geronimo-commonj_1.1_spec-1.0.jar"/>
+        <include name="XmlSchema-1.3.2.jar"/>
+        <include name="commons-httpclient-3.0.1.jar"/>
+        <include name="ecore-2.2.3.jar"/>
+        <include name="coyote-6.0.10.jar"/>
+        <include name="juli-6.0.10.jar"/>
+        <include name="httpcore-nio-4.0-alpha5.jar"/>
+        <include name="axiom-api-1.2.5.jar"/>
+        <include name="xercesImpl-2.8.1.jar"/>
+        <include name="tuscany-sdo-impl-1.0-incubating.jar"/>
+        <include name="ecore-change-2.2.3.jar"/>
+        <include name="httpcore-niossl-4.0-alpha5.jar"/>
+        <include name="commons-io-1.2.jar"/>
+        <include name="saxon-8.7.jar"/>
+        <include name="saxon-dom-8.7.jar"/>
+    </fileset>
 
-	<target name="clean">
-		<delete quiet="true" includeemptydirs="true">
-			<fileset dir="target" />
-		</delete>
-	</target>
 </project>

Modified: incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/accounts.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/accounts.xml?rev=588122&r1=588121&r2=588122&view=diff
==============================================================================
--- incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/accounts.xml (original)
+++ incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/accounts.xml Wed Oct 24 20:13:05 2007
@@ -1,4 +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.    
+-->
 <customer id="123" xmlns="http://example.com/customer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
     <firstName>John</firstName>
     <lastName>Smith</lastName>

Modified: incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/customer.xsd
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/customer.xsd?rev=588122&r1=588121&r2=588122&view=diff
==============================================================================
--- incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/customer.xsd (original)
+++ incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/customer.xsd Wed Oct 24 20:13:05 2007
@@ -1,4 +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.    
+-->
 <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://exmaple.com/customer"
     targetNamespace="http://exmaple.com/customer" elementFormDefault="qualified">
     <element name="customer" type="tns:Customer" />

Modified: incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/quotes.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/quotes.xml?rev=588122&r1=588121&r2=588122&view=diff
==============================================================================
--- incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/quotes.xml (original)
+++ incubator/tuscany/java/sca/demos/xml-bigbank/src/main/resources/quotes.xml Wed Oct 24 20:13:05 2007
@@ -1,4 +1,22 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?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.    
+-->
 <GetQuotesResponse xmlns="http://swanandmokashi.com">
     <GetQuotesResult>
         <Quote>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org