You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by mm...@apache.org on 2005/02/04 03:24:18 UTC

svn commit: r151293 - incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client-svn.xml incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-svn.xml

Author: mmerz
Date: Thu Feb  3 18:24:17 2005
New Revision: 151293

URL: http://svn.apache.org/viewcvs?view=rev&rev=151293
Log:
Fixed wsm-blank sample.

Added:
    incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client-svn.xml
    incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-svn.xml

Added: incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client-svn.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client-svn.xml?view=auto&rev=151293
==============================================================================
--- incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client-svn.xml (added)
+++ incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-client-svn.xml Thu Feb  3 18:24:17 2005
@@ -0,0 +1,97 @@
+<?xml version="1.0" ?>
+
+<!--
+   Copyright 2004 The Apache Software Foundation 
+ 
+   Licensed 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.
+ 
+   $Header:$
+ -->
+
+<project name="wsm-blank Client" basedir="." default="test">
+	
+  <import file="../../../beehive-imports.xml" />
+
+  <property
+      name="wsdl.url" 
+      value="http://localhost:8080/wsm-blankWS/template/Blank.jws?wsdl" />
+  <property name="webapp.dir" value=".." />
+  <property name="web.inf.dir" value="${webapp.dir}/WEB-INF" />
+  <property name="lib.dir" value="${web.inf.dir}/lib" />
+  <property name="log.dir" value="${web.inf.dir}/logs" />
+  <property name="build.dir" value="${web.inf.dir}/build-client" />
+  <property name="gen.dir" value="${build.dir}/gen" />
+  <property name="classes.dir" value="${build.dir}/classes" />
+      
+  <path id="jars">
+    <fileset dir="${lib.dir}">
+      <include name="**/*.jar"/>
+    </fileset>
+  </path>
+	
+  <target name="test" depends="dirs,compile">
+    <junit
+        printsummary="yes"
+        haltonfailure="yes"
+        showoutput="yes">
+      <classpath>
+        <pathelement location= "${classes.dir}"/>
+      <path refid="jars"/>
+      </classpath>
+      <formatter type="plain"/>
+      <batchtest fork="yes" todir="${log.dir}">
+        <fileset dir="${classes.dir}">
+          <include name="**/*Test*.class"/>
+        </fileset>
+      </batchtest>
+    </junit>
+  </target>
+	
+  <target name="compile" depends="genClient">
+    <javac
+        srcdir="${gen.dir}"
+	destdir="${classes.dir}"
+	classpathref="jars"
+	failonerror="true"
+ 	source="1.4" />
+  </target>	
+	
+  <target name="genClient" depends="dirs">
+    <deploy-wsm webappDir="${webapp.dir}" />
+    <taskdef
+        name="wsdl2java"
+        classname="org.apache.axis.tools.ant.wsdl.Wsdl2javaAntTask"
+        loaderref="axis">
+      <classpath refid="jars"/>
+    </taskdef>
+    <wsdl2java
+        url="${wsdl.url}"
+	output="${gen.dir}"
+	testcase="yes">
+    </wsdl2java>
+  </target>
+	
+  <target name="clean">
+    <delete dir="${build.dir}" />
+    <delete dir="${log.dir}" />
+    <delete dir="${lib.dir}" />
+  </target>
+	
+  <target name="dirs">
+    <mkdir dir="${build.dir}" />
+    <mkdir dir="${gen.dir}" />
+    <mkdir dir="${classes.dir}" />
+    <mkdir dir="${log.dir}" />
+  </target>	
+
+</project>

Added: incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-svn.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-svn.xml?view=auto&rev=151293
==============================================================================
--- incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-svn.xml (added)
+++ incubator/beehive/trunk/samples/wsm-blank/WEB-INF/build-svn.xml Thu Feb  3 18:24:17 2005
@@ -0,0 +1,94 @@
+<?xml version="1.0" ?>
+
+<!--
+   Copyright 2004 The Apache Software Foundation 
+ 
+   Licensed 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.
+ 
+   $Header:$
+ -->
+
+<project name="wsm-blank" default="build" basedir=".">
+
+  <import file="../../../beehive-imports.xml" />
+
+  <property name="service.name" value="wsm-blank" />
+  
+  <property name="webapp.dir" location=".." />
+  <property name="web.inf.dir" location="${webapp.dir}/web-inf" />
+  <property name="attachments.dir" location="${web.inf.dir}/attachments" />
+  <property name="classes.dir" location="${web.inf.dir}/classes" />
+  <property name="lib.dir" location="${web.inf.dir}/lib" />
+  <property name="webservice.jar" location="${lib.dir}/${service.name}WS.jar" />
+  <property name="webservice.war" location="${service.name}WS.war" />
+  
+  <condition property="isJDK15">
+    <equals arg1="${ant.java.version}" arg2="1.5" />
+  </condition>
+
+  <path id="jars">
+    <fileset dir="${lib.dir}" >
+      <include name="**/*.jar" />
+    </fileset>
+  </path>
+
+  
+  <!-- ========================================= -->
+  <!-- deploy.war - build deployable artifact    -->
+  <!-- ========================================= -->
+  
+  <target name="deploy.war">
+    <jar jarfile="${to.dir}/${service.name}WS.war">
+      <fileset dir="${webapp.dir}">
+        <exclude name="${web.inf}/src/**" />
+        <exclude name="${web.inf}/.tmpbeansrc/**" />
+      </fileset>
+    </jar>
+  </target>
+  
+
+  <!-- ========================================= -->
+  <!-- build - build all binaries                -->
+  <!-- ========================================= -->
+
+  <target name="build" depends="dirs">
+    <deploy-wsm webappDir="${webapp.dir}" />
+    <build-webapp webappDir="${webapp.dir}" />
+    <jar jarfile="${webservice.jar}">
+      <fileset dir="${classes.dir}" />
+    </jar>
+  </target>
+
+  
+  <!-- ========================================= -->
+  <!-- clean - remove binary files               -->
+  <!-- ========================================= -->
+
+  <target name="clean">
+    <delete dir="${attachments.dir}" />
+    <delete dir="${lib.dir}" />
+    <delete file="velocity.log" />
+    <clean-webapp webappDir="${webapp.dir}" />
+  </target>
+
+  
+  <!-- ========================================= -->
+  <!-- dirs - create dirs required for compile   -->
+  <!-- ========================================= -->
+
+  <target name="dirs">
+    <mkdir dir="${attachments.dir}" />
+    <mkdir dir="${classes.dir}" />
+  </target>
+
+</project>