api / org.gradle.plugins.ide.eclipse.model / EclipseProject / buildCommand

buildCommand

open fun buildCommand(args: MutableMap<String, String>, buildCommand: String): Unit

Adds a build command with arguments to the eclipse project.

For example see docs for EclipseProject

Parameters

args - A map with arguments, where the key is the name of the argument and the value the value.

buildCommand - The name of the build command.

See Also
#buildCommand(String)

open fun buildCommand(buildCommand: String): Unit

Adds a build command to the eclipse project.

For example see docs for EclipseProject

Parameters

buildCommand - The name of the build command

See Also
#buildCommand(Map, String)