blob: 4081f7deb4a9e9b2f89f1f2725ff51305674bb93 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 SSI Schaefer IT Solutions GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* SSI Schaefer IT Solutions GmbH
*******************************************************************************/
package org.eclipse.tea.library.build.lcdsl.tasks.config;
import org.eclipse.tea.core.services.TaskingConfigurationExtension;
import org.eclipse.tea.core.services.TaskingConfigurationExtension.TaskingConfig;
import org.osgi.service.component.annotations.Component;
@TaskingConfig(description = "TEA Core Configuration")
@Component
public class LcDslLaunchConfig implements TaskingConfigurationExtension {
@TaskingConfigProperty(description = "Name of the launch configuration to start", headlessOnly = true)
public String launchConfig;
}