org.gradle.api.plugins.JavaApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2018 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.file.CopySpec;
import org.gradle.api.provider.Property;
/**
* Configuration for a Java application, defining how to assemble the application.
*
* An instance of this type is added as a project extension by the Java application plugin
* under the name 'application'.
*
*
* plugins {
* id 'application'
* }
*
* application {
* mainClass.set("com.foo.bar.FooBar")
* }
*
*
* @since 4.10
*/
public interface JavaApplication {
/**
* The name of the application.
*/
String getApplicationName();
/**
* The name of the application.
*/
void setApplicationName(String applicationName);
/**
* The name of the application's Java module if it should run as a module.
*
* @since 6.4
*/
Property getMainModule();
/**
* The fully qualified name of the application's main class.
*
* @since 6.4
*/
Property getMainClass();
/**
* Array of string arguments to pass to the JVM when running the application
*/
Iterable getApplicationDefaultJvmArgs();
/**
* Array of string arguments to pass to the JVM when running the application
*/
void setApplicationDefaultJvmArgs(Iterable applicationDefaultJvmArgs);
/**
* Directory to place executables in
*/
String getExecutableDir();
/**
* Directory to place executables in
*/
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.
*/
CopySpec getApplicationDistribution();
void setApplicationDistribution(CopySpec applicationDistribution);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy