First Commit from Source Code Reply

This commit is contained in:
vincenzofariello
2024-05-09 17:40:24 +02:00
parent 11e3b57c5b
commit 107a016cb9
35225 changed files with 1111346 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
package <%=packageName%>;
import weblogic.ant.taskdefs.antline.AntTool;
/**
* Generated class; do not edit.
*
* This is a command line tool generated by weblogic antline on
* <%= new java.util.Date() %>
*/
public class <%=cmdName%> {
public static void main(String args[]) throws Exception {
AntTool tool = new AntTool("<%=taskName%>");
<%=addOptions%>
if (args.length == 0) {
tool.usageAndExit(<%=cmdName%>.class.getName());
}
tool.run(args);
}
}