Browse Source

Remove old register-tasklib task

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269200 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
5d3369eb34
1 changed files with 0 additions and 63 deletions
  1. +0
    -63
      proposal/myrmidon/src/java/org/apache/ant/modules/core/RegisterTasklib.java

+ 0
- 63
proposal/myrmidon/src/java/org/apache/ant/modules/core/RegisterTasklib.java View File

@@ -1,63 +0,0 @@
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE file.
*/
package org.apache.ant.modules.core;

import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import org.apache.avalon.framework.component.ComponentException;
import org.apache.avalon.framework.component.ComponentManager;
import org.apache.avalon.framework.component.Composable;
import org.apache.myrmidon.api.AbstractTask;
import org.apache.myrmidon.api.TaskException;
import org.apache.myrmidon.components.deployer.DeploymentException;
import org.apache.myrmidon.components.deployer.Deployer;

/**
* Method to register a tasklib.
*
* @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
*/
public class RegisterTasklib
extends AbstractTask
implements Composable
{
protected String m_lib;
protected Deployer m_deployer;

public void compose( final ComponentManager componentManager )
throws ComponentException
{
m_deployer = (Deployer)componentManager.lookup( Deployer.ROLE );
}

public void setLib( final String lib )
{
m_lib = lib;
}

public void execute()
throws TaskException
{
if( null == m_lib )
{
throw new TaskException( "Must specify lib parameter" );
}

final File file = getContext().resolveFile( m_lib );

try
{
m_deployer.deploy( file );
}
catch( final DeploymentException de )
{
throw new TaskException( "Error registering resource", de );
}
}
}

Loading…
Cancel
Save