Search Gradle plugins

com.palantir.launch-config

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.1.0

Created 23 October 2017.

A Gradle Plugin that creates .launch files for Eclipse and Run Configurations for IntelliJ for your project's JavaExec tasks.

Using the plugins DSL:

plugins {
  id("com.palantir.launch-config") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.palantir.launchconfig:gradle-launch-config-plugin:1.1.0")
  }
}

apply(plugin = "com.palantir.launch-config")

Using the plugins DSL:

plugins {
  id "com.palantir.launch-config" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.palantir.launchconfig:gradle-launch-config-plugin:1.1.0"
  }
}

apply plugin: "com.palantir.launch-config"

Learn how to apply plugins to subprojects