org.apache.tools.ant.taskdefs.Echo Java Examples
The following examples show how to use
org.apache.tools.ant.taskdefs.Echo.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TaskBuildOptions.java From webdsl with Apache License 2.0 | 5 votes |
public void execute() { Project project = getProject(); String buildoptions = project.getProperty("buildoptions"); Pattern p = Pattern.compile("\\s"); String[] commands = p.split(buildoptions); for(int i=0; i<commands.length; i++){ project.setProperty("command"+i,commands[i]); Echo echo = (Echo) project.createTask("echo"); echo.setMessage("command"+i+": "+commands[i]); echo.perform(); } project.setProperty("numberofcommands",""+commands.length); }
Example #2
Source File: IvyDeliver.java From ant-ivy with Apache License 2.0 | 5 votes |
private void appendDeliveryList(String msg) { Echo echo = (Echo) getProject().createTask("echo"); echo.setOwningTarget(getOwningTarget()); echo.init(); echo.setFile(deliveryList); echo.setMessage(msg + "\n"); echo.setAppend(true); echo.perform(); }
Example #3
Source File: TagListTask.java From ant-git-tasks with Apache License 2.0 | 5 votes |
/** * Processes a list of references, check references names and output to a file if requested. * * @param refList The list of references to process */ protected void processReferencesAndOutput(List<Ref> refList) { List<String> refNames = new ArrayList<String>(refList.size()); for (Ref ref : refList) { refNames.add(GitTaskUtils.sanitizeRefName(ref.getName())); } if (!namesToCheck.isEmpty()) { if (!refNames.containsAll(namesToCheck)) { List<String> namesCopy = new ArrayList<String>(namesToCheck); namesCopy.removeAll(refNames); throw new GitBuildException(String.format(MISSING_REFS_TEMPLATE, namesCopy.toString())); } } if (!GitTaskUtils.isNullOrBlankString(outputFilename)) { FileUtils fileUtils = FileUtils.getFileUtils(); Echo echo = new Echo(); echo.setProject(getProject()); echo.setFile(fileUtils.resolveFile(getProject().getBaseDir(), outputFilename)); for (int i = 0; i < refNames.size(); i++) { String refName = refNames.get(i); echo.addText(String.format(REF_NAME_TEMPLATE, refName)); } echo.perform(); } }
Example #4
Source File: TaskFixClasspath.java From webdsl with Apache License 2.0 | 4 votes |
public void execute() { Project project = getProject(); String currentdir = project.getProperty("currentdir"); String generatedir = project.getProperty("generate-dir"); String webcontentdir = project.getProperty("webcontentdir"); StringBuilder classpathFile = new StringBuilder(); classpathFile.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"); classpathFile.append("<classpath>\n"); classpathFile.append("\t<classpathentry kind=\"src\" path=\".servletapp/src-template\"/>\n"); classpathFile.append("\t<classpathentry kind=\"src\" path=\".servletapp/src-generated\"/>\n"); classpathFile.append("\t<classpathentry kind=\"src\" path=\"nativejava\"/>\n"); classpathFile.append("\t<classpathentry kind=\"con\" path=\"org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6\"/>\n"); classpathFile.append("\t<classpathentry kind=\"con\" path=\"org.eclipse.jst.j2ee.internal.web.container\"/>\n"); classpathFile.append("\t<classpathentry kind=\"con\" path=\"org.eclipse.jst.j2ee.internal.module.container\"/>\n"); classpathFile.append("\t<classpathentry kind=\"output\" path=\"").append(generatedir).append("/WEB-INF/classes\"/>\n"); //must use relative path here String filedir = webcontentdir+"/WEB-INF/lib"; //must use absolute path here File appdir = new File(filedir); Echo echo = (Echo) project.createTask("echo"); echo.setMessage(filedir); echo.perform(); File[] libfiles = appdir.listFiles(); for (int i = 0 ; i < libfiles.length ; i ++ ) { if ( libfiles[i].isFile ( ) ){ classpathFile.append("\t<classpathentry kind=\"lib\" path=\"").append(generatedir).append("/WEB-INF/lib/").append(libfiles[i].getName()).append("\"/>\n"); //must use relative path here } } classpathFile.append("</classpath>\n"); try { //write result FileWriter fw = new FileWriter(currentdir+"/.classpath"); BufferedWriter bw = new BufferedWriter(fw); bw.write(classpathFile.toString()); bw.close(); fw.close(); } catch (Exception e) { Echo ec = (Echo) project.createTask("echo"); ec.setMessage(e.getMessage()); ec.perform(); } }