org.gradle.api.plugins.ApplicationPluginConvention 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.api.plugins;
import org.gradle.api.Project;
import org.gradle.api.file.CopySpec;
/**
* The {@link Convention} used for configuring the {@link ApplicationPlugin}.
*
* @deprecated Use {@link JavaApplication} instead. This class is scheduled for removal in Gradle 9.0.
*/
@Deprecated
public abstract class ApplicationPluginConvention {
/**
* The name of the application.
*/
public abstract String getApplicationName();
/**
* The name of the application.
*/
public abstract void setApplicationName(String applicationName);
/**
* The fully qualified name of the application's main class.
*/
public abstract String getMainClassName();
/**
* The fully qualified name of the application's main class.
*/
public abstract void setMainClassName(String mainClassName);
/**
* Array of string arguments to pass to the JVM when running the application
*/
public abstract Iterable getApplicationDefaultJvmArgs();
/**
* Array of string arguments to pass to the JVM when running the application
*/
public abstract void setApplicationDefaultJvmArgs(Iterable applicationDefaultJvmArgs);
/**
* Directory to place executables in
*
* @since 4.5
*/
public abstract String getExecutableDir();
/**
* Directory to place executables in
*
* @since 4.5
*/
public abstract void setExecutableDir(String executableDir);
/**
* The specification of the contents of the distribution.
*
* Use this {@link org.gradle.api.file.CopySpec} to include extra files/resource in the application distribution.
*
* plugins {
* id 'application'
* }
*
* application {
* applicationDistribution.from("some/dir") {
* include "*.txt"
* }
* }
*
*
* Note that the application plugin pre configures this spec to; include the contents of "{@code src/dist}",
* copy the application start scripts into the "{@code bin}" directory, and copy the built jar and its dependencies
* into the "{@code lib}" directory.
*/
public abstract CopySpec getApplicationDistribution();
public abstract void setApplicationDistribution(CopySpec applicationDistribution);
public abstract Project getProject();
}