|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectvgrid.dispense.DeployLibrary
public class DeployLibrary
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 |
|---|
public DeployLibrary()
| Method Detail |
|---|
public static void main(java.lang.String[] args)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||