blob: 9bcdf3cdeeae6c3c579df4a3f659b8422533a825 [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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Red Hat Inc. - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.wst.jsdt.js.grunt.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 GruntTask extends AbstractTask {
public GruntTask(String name, IFile buildFile, boolean isDefault, Location location) {
super(name, buildFile, isDefault, location);
}
}