You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2005/08/12 16:39:55 UTC

svn commit: r232304 - /beehive/trunk/system-controls/src/webservice/build.xml

Author: ekoneil
Date: Fri Aug 12 07:39:53 2005
New Revision: 232304

URL: http://svn.apache.org/viewcvs?rev=232304&view=rev
Log:
Changing the web service control to use the <control-jar> task.

BB: self
DRT: none


Modified:
    beehive/trunk/system-controls/src/webservice/build.xml

Modified: beehive/trunk/system-controls/src/webservice/build.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/system-controls/src/webservice/build.xml?rev=232304&r1=232303&r2=232304&view=diff
==============================================================================
--- beehive/trunk/system-controls/src/webservice/build.xml (original)
+++ beehive/trunk/system-controls/src/webservice/build.xml Fri Aug 12 07:39:53 2005
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 
-<project name="Service Control Build" default="build" basedir=".">
+<project name="Beehive/SystemControls/WebService" default="build" basedir=".">
 
     <import file="../../systemcontrols-imports.xml"/>
 
@@ -36,7 +36,7 @@
             </fileset>
         </copy>
 
-        <jar destfile="${build.lib.dir}/${wsmcontrol.jar.name}" basedir="${classes.dir}/${module.name}">
+        <control-jar destfile="${build.lib.dir}/${wsmcontrol.jar.name}" basedir="${classes.dir}/${module.name}">
             <manifest>
                 <attribute name="Extension-Name" value="Beehive Web Service Control"/>
                 <attribute name="Specification-Title" value="Beehive Web Service Control"/>
@@ -47,13 +47,12 @@
                 <attribute name="Implementation-Version" value="${beehive.version}"/>
                 <attribute name="Web-Service-Control-Version" value="${beehive.version}"/>
             </manifest>
-        </jar>
+        </control-jar>
     </target>
 
     <!-- ========================================= -->
     <!-- clean - delete all binaries and artifacts -->
     <!-- ========================================= -->
-
     <target name="clean">
         <delete dir="${classes.dir}/${module.name}"/>
         <delete dir="${gen.src.dir}/${module.name}"/>