org.gradle.plugins.ide.eclipse.model.EclipseWtp Maven / Gradle / Ivy
Show all versions of gradle-api Show documentation
/*
* Copyright 2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.plugins.ide.eclipse.model;
import groovy.lang.Closure;
import org.gradle.api.Action;
import static org.gradle.util.ConfigureUtil.configure;
/**
* Enables fine-tuning wtp/wst details of the Eclipse plugin
*
* For projects applying the eclipse plugin and either one of the ear or war plugins, this plugin is auto-applied.
*
* More interesting examples you will find in docs for {@link EclipseWtpComponent} and {@link EclipseWtpFacet}
*
*
* apply plugin: 'war' //or 'ear' or 'java'
* apply plugin: 'eclipse-wtp'
*
* eclipse {
*
* //if you want parts of paths in resulting file(s) to be replaced by variables (files):
* pathVariables 'GRADLE_HOME': file('/best/software/gradle'), 'TOMCAT_HOME': file('../tomcat')
*
* wtp {
* component {
* //for examples see docs for {@link EclipseWtpComponent}
* }
*
* facet {
* //for examples see docs for {@link EclipseWtpFacet}
* }
* }
* }
*
*
*/
public class EclipseWtp {
private EclipseWtpComponent component;
private EclipseWtpFacet facet;
/**
* Configures wtp component.
*
* For examples see docs for {@link EclipseWtpComponent}
*/
public EclipseWtpComponent getComponent() {
return component;
}
public void setComponent(EclipseWtpComponent component) {
this.component = component;
}
/**
* Configures wtp component.
*
* For examples see docs for {@link EclipseWtpComponent}
*
* @param action
*/
public void component(Closure action) {
configure(action, component);
}
/**
* Configures wtp component.
*
* For examples see docs for {@link EclipseWtpComponent}
*
* @param action
* @since 3.5
*/
public void component(Action super EclipseWtpComponent> action) {
action.execute(component);
}
/**
* Configures wtp facet.
*
* For examples see docs for {@link EclipseWtpFacet}
*/
public EclipseWtpFacet getFacet() {
return facet;
}
public void setFacet(EclipseWtpFacet facet) {
this.facet = facet;
}
/**
* Configures wtp facet.
*
* For examples see docs for {@link EclipseWtpFacet}
*
* @param action
*/
public void facet(Closure action) {
configure(action, facet);
}
/**
* Configures wtp facet.
*
* For examples see docs for {@link EclipseWtpFacet}
*
* @param action
* @since 3.5
*/
public void facet(Action super EclipseWtpFacet> action) {
action.execute(facet);
}
}