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 0.5.1
0.5.1
Created 21 October 2016.
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 "0.5.1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("gradle.plugin.com.palantir.launchconfig:gradle-launch-config-plugin:0.5.1") } } apply(plugin = "com.palantir.launch-config")
- Applying plugins to all subprojects .