blob: 619f15cd5b24eec19fa02d6ba9e222fd8d5f289e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Red Hat, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Red Hat Inc. - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.wst.jsdt.js.gulp.internal;
import org.eclipse.core.resources.IFile;
import org.eclipse.wst.jsdt.js.common.build.system.AbstractTask;
import org.eclipse.wst.jsdt.js.common.build.system.Location;
/**
* @author "Ilya Buziuk (ibuziuk)"
*/
public class GulpTask extends AbstractTask {
public GulpTask(String name, IFile buildFile, boolean isDefault, Location location) {
super(name, buildFile, isDefault, location);
}
}