vgrid.dispense
Class DeployLibrary

java.lang.Object
  extended by vgrid.dispense.DeployLibrary

public class DeployLibrary
extends java.lang.Object

Deploys tasks to the server. Designed to be used with jakarta ant. Here is a sample target I used in a test project.

      <target name="deploy_code" depends="compile">
          <jar jarfile="../vs.jar">
              <fileset dir="../classes" includes="vgridsecuri/tasks/*.class"/>
          </jar>
          <java classname="vgrid.util.DeployLibrary" failonerror="true">
              <classpath>
                  <pathelement location="lib/vgrid.jar"/>
              </classpath>
              <arg line="-host localhost -port 8080"/>
              <arg file="../vs.jar"/>
          </java>
      </target>
 


Constructor Summary
DeployLibrary()
           
 
Method Summary
static void main(java.lang.String[] args)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DeployLibrary

public DeployLibrary()
Method Detail

main

public static void main(java.lang.String[] args)


vgrid the vienna grid project