com.palantir.launch-config
Owner: Palantir Technologies
A Gradle Plugin that creates .launch files for Eclipse and Run Configurations for IntelliJ for your project's JavaExec tasks.
https://github.com/palantir/gradle-launch-config-plugin
Sources: https://github.com/palantir/gradle-launch-config-plugin
Version 1.2.0 (latest)
Created 11 June 2018.
A Gradle Plugin that creates .launch files for Eclipse and Run Configurations for IntelliJ for your project's JavaExec tasks.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.palantir.launch-config") version "1.2.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.palantir.launch-config:com.palantir.launch-config.gradle.plugin:1.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.palantir.launch-config") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.palantir.launch-config:com.palantir.launch-config.gradle.plugin:1.2.0") } } apply(plugin = "com.palantir.launch-config")
- Applying plugins to all subprojects .