Browse Source

Moved Echo int myrmidon tree.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269202 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
aa4d22adfb
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      proposal/myrmidon/src/java/org/apache/myrmidon/libs/core/Echo.java
  2. +1
    -1
      proposal/myrmidon/src/manifest/core-ant-descriptor.xml

proposal/myrmidon/src/java/org/apache/ant/modules/basic/Echo.java → proposal/myrmidon/src/java/org/apache/myrmidon/libs/core/Echo.java View File

@@ -5,10 +5,10 @@
* version 1.1, a copy of which has been included with this distribution in * version 1.1, a copy of which has been included with this distribution in
* the LICENSE file. * the LICENSE file.
*/ */
package org.apache.ant.modules.basic;
package org.apache.myrmidon.libs.core;


import org.apache.myrmidon.api.TaskException;
import org.apache.myrmidon.api.AbstractTask; import org.apache.myrmidon.api.AbstractTask;
import org.apache.myrmidon.api.TaskException;


/** /**
* This is the echo task to display a message. * This is the echo task to display a message.
@@ -18,7 +18,7 @@ import org.apache.myrmidon.api.AbstractTask;
public class Echo public class Echo
extends AbstractTask extends AbstractTask
{ {
protected String m_message;
private String m_message;


public void setMessage( final String message ) public void setMessage( final String message )
{ {

+ 1
- 1
proposal/myrmidon/src/manifest/core-ant-descriptor.xml View File

@@ -3,7 +3,7 @@
<types> <types>


<!-- basic tasks/datatypes/coverters required in most environments --> <!-- basic tasks/datatypes/coverters required in most environments -->
<task name="echo" classname="org.apache.ant.modules.basic.Echo" />
<task name="echo" classname="org.apache.myrmidon.libs.core.Echo" />
<task name="property" classname="org.apache.ant.modules.basic.Property" /> <task name="property" classname="org.apache.ant.modules.basic.Property" />
<task name="ant-call" classname="org.apache.ant.modules.basic.AntCall" /> <task name="ant-call" classname="org.apache.ant.modules.basic.AntCall" />




Loading…
Cancel
Save