Copyright (c) 2005, 2013 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation
/******************************************************************************* * Copyright (c) 2005, 2013 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/
package org.eclipse.ant.internal.core.ant; import java.util.Arrays; import java.util.Vector; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.Executor; import org.apache.tools.ant.Project; import org.apache.tools.ant.helper.SingleCheckExecutor; import org.eclipse.ant.internal.core.IAntCoreConstants; public class EclipseSingleCheckExecutor extends SingleCheckExecutor { /* * (non-Javadoc) * * @see org.apache.tools.ant.Executor#executeTargets(org.apache.tools.ant.Project, java.lang.String[]) */ @Override public void executeTargets(Project project, String[] targetNames) throws BuildException { Vector<String> v = new Vector<>(); v.addAll(Arrays.asList(targetNames)); project.addReference(IAntCoreConstants.TARGET_VECTOR_NAME, v); super.executeTargets(project, targetNames); } /* * (non-Javadoc) * * @see org.apache.tools.ant.Executor#getSubProjectExecutor() */ @Override public Executor getSubProjectExecutor() { return this; } }