Browse Source

Moved implementation of ExecManager into new package

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270464 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
e84361f936
5 changed files with 10 additions and 6 deletions
  1. +6
    -2
      proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/impl/DefaultExecManager.java
  2. +1
    -1
      proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/impl/ProcessDestroyer.java
  3. +1
    -1
      proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/impl/ProcessMonitor.java
  4. +1
    -1
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/exec/Execute.java
  5. +1
    -1
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/exec/Execute.java

proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/DefaultExecManager.java → proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/impl/DefaultExecManager.java View File

@@ -5,7 +5,7 @@
* 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.txt file. * the LICENSE.txt file.
*/ */
package org.apache.myrmidon.framework.exec;
package org.apache.myrmidon.framework.exec.impl;


import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
@@ -14,6 +14,10 @@ import java.io.OutputStream;
import java.util.Locale; import java.util.Locale;
import org.apache.avalon.excalibur.io.FileUtil; import org.apache.avalon.excalibur.io.FileUtil;
import org.apache.myrmidon.framework.Os; import org.apache.myrmidon.framework.Os;
import org.apache.myrmidon.framework.exec.CommandLauncher;
import org.apache.myrmidon.framework.exec.ExecException;
import org.apache.myrmidon.framework.exec.ExecManager;
import org.apache.myrmidon.framework.exec.ExecMetaData;
import org.apache.myrmidon.framework.exec.launchers.DefaultCommandLauncher; import org.apache.myrmidon.framework.exec.launchers.DefaultCommandLauncher;
import org.apache.myrmidon.framework.exec.launchers.MacCommandLauncher; import org.apache.myrmidon.framework.exec.launchers.MacCommandLauncher;
import org.apache.myrmidon.framework.exec.launchers.ScriptCommandLauncher; import org.apache.myrmidon.framework.exec.launchers.ScriptCommandLauncher;
@@ -24,8 +28,8 @@ import org.apache.myrmidon.framework.exec.launchers.WinNTCommandLauncher;
* Used to run processes in the ant environment. * Used to run processes in the ant environment.
* *
* @author <a href="mailto:peter@apache.org">Peter Donald</a> * @author <a href="mailto:peter@apache.org">Peter Donald</a>
* @version $Revision$ $Date$
* @author <a href="mailto:thomas.haas@softwired-inc.com">Thomas Haas</a> * @author <a href="mailto:thomas.haas@softwired-inc.com">Thomas Haas</a>
* @version $Revision$ $Date$
* @see ExecManager * @see ExecManager
* @see ExecMetaData * @see ExecMetaData
*/ */

proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/ProcessDestroyer.java → proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/impl/ProcessDestroyer.java View File

@@ -5,7 +5,7 @@
* 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.txt file. * the LICENSE.txt file.
*/ */
package org.apache.myrmidon.framework.exec;
package org.apache.myrmidon.framework.exec.impl;


import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.util.ArrayList; import java.util.ArrayList;

proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/ProcessMonitor.java → proposal/myrmidon/src/java/org/apache/myrmidon/framework/exec/impl/ProcessMonitor.java View File

@@ -5,7 +5,7 @@
* 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.txt file. * the LICENSE.txt file.
*/ */
package org.apache.myrmidon.framework.exec;
package org.apache.myrmidon.framework.exec.impl;


import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;

+ 1
- 1
proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/exec/Execute.java View File

@@ -12,7 +12,7 @@ import java.io.IOException;
import java.io.OutputStream; import java.io.OutputStream;
import java.util.Properties; import java.util.Properties;
import org.apache.myrmidon.api.TaskException; import org.apache.myrmidon.api.TaskException;
import org.apache.myrmidon.framework.exec.DefaultExecManager;
import org.apache.myrmidon.framework.exec.impl.DefaultExecManager;
import org.apache.myrmidon.framework.exec.ExecException; import org.apache.myrmidon.framework.exec.ExecException;
import org.apache.myrmidon.framework.exec.ExecMetaData; import org.apache.myrmidon.framework.exec.ExecMetaData;
import org.apache.tools.ant.Project; import org.apache.tools.ant.Project;


+ 1
- 1
proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/exec/Execute.java View File

@@ -12,7 +12,7 @@ import java.io.IOException;
import java.io.OutputStream; import java.io.OutputStream;
import java.util.Properties; import java.util.Properties;
import org.apache.myrmidon.api.TaskException; import org.apache.myrmidon.api.TaskException;
import org.apache.myrmidon.framework.exec.DefaultExecManager;
import org.apache.myrmidon.framework.exec.impl.DefaultExecManager;
import org.apache.myrmidon.framework.exec.ExecException; import org.apache.myrmidon.framework.exec.ExecException;
import org.apache.myrmidon.framework.exec.ExecMetaData; import org.apache.myrmidon.framework.exec.ExecMetaData;
import org.apache.tools.ant.Project; import org.apache.tools.ant.Project;


Loading…
Cancel
Save