Browse Source

Move runtime tasks from myrmidon.libs package

to abtlib package


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270233 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
7cffd478a0
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      proposal/myrmidon/src/java/org/apache/antlib/runtime/ConverterDef.java
  2. +2
    -2
      proposal/myrmidon/src/java/org/apache/antlib/runtime/Facility.java
  3. +1
    -1
      proposal/myrmidon/src/java/org/apache/antlib/runtime/Import.java
  4. +0
    -0
      proposal/myrmidon/src/java/org/apache/antlib/runtime/Resources.properties
  5. +1
    -1
      proposal/myrmidon/src/java/org/apache/antlib/runtime/TypeDef.java

proposal/myrmidon/src/java/org/apache/myrmidon/libs/runtime/ConverterDef.java → proposal/myrmidon/src/java/org/apache/antlib/runtime/ConverterDef.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE file.
*/
package org.apache.myrmidon.libs.runtime;
package org.apache.antlib.runtime;

import java.io.File;
import java.net.MalformedURLException;

proposal/myrmidon/src/java/org/apache/myrmidon/libs/runtime/Facility.java → proposal/myrmidon/src/java/org/apache/antlib/runtime/Facility.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE file.
*/
package org.apache.myrmidon.libs.runtime;
package org.apache.antlib.runtime;

import java.io.File;
import java.net.MalformedURLException;
@@ -82,7 +82,7 @@ public class Facility
}
catch( final Exception e )
{
final String message =
final String message =
REZ.getString( "facility.no-create.error", children[ 0 ].getName() );
throw new ConfigurationException( message, e );
}

proposal/myrmidon/src/java/org/apache/myrmidon/libs/runtime/Import.java → proposal/myrmidon/src/java/org/apache/antlib/runtime/Import.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE file.
*/
package org.apache.myrmidon.libs.runtime;
package org.apache.antlib.runtime;

import org.apache.avalon.excalibur.i18n.ResourceManager;
import org.apache.avalon.excalibur.i18n.Resources;

proposal/myrmidon/src/java/org/apache/myrmidon/libs/runtime/Resources.properties → proposal/myrmidon/src/java/org/apache/antlib/runtime/Resources.properties View File


proposal/myrmidon/src/java/org/apache/myrmidon/libs/runtime/TypeDef.java → proposal/myrmidon/src/java/org/apache/antlib/runtime/TypeDef.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE file.
*/
package org.apache.myrmidon.libs.runtime;
package org.apache.antlib.runtime;

import org.apache.myrmidon.api.Task;
import org.apache.myrmidon.framework.AbstractTypeDef;

Loading…
Cancel
Save