From 654f16a698f393bee92ce5616e13d3661d1f6ce2 Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Fri, 8 Jun 2001 09:12:02 +0000 Subject: [PATCH] Updated to current descriptor name. git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269125 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/myrmidon/components/deployer/Deployment.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proposal/myrmidon/src/java/org/apache/myrmidon/components/deployer/Deployment.java b/proposal/myrmidon/src/java/org/apache/myrmidon/components/deployer/Deployment.java index 9416d5065..618742b43 100644 --- a/proposal/myrmidon/src/java/org/apache/myrmidon/components/deployer/Deployment.java +++ b/proposal/myrmidon/src/java/org/apache/myrmidon/components/deployer/Deployment.java @@ -27,7 +27,7 @@ import org.xml.sax.XMLReader; */ public class Deployment { - private final static String TSKDEF_FILE = "TASK-LIB/taskdefs.xml"; + public final static String DESCRIPTOR_NAME = "META-INF/ant-types.xml"; private File m_file; @@ -62,7 +62,7 @@ public class Deployment private Configuration buildDescriptor() throws DeploymentException { - final String systemID = "jar:" + getURL() + "!/" + TSKDEF_FILE; + final String systemID = "jar:" + getURL() + "!/" + DESCRIPTOR_NAME; try {