dev.north.fortyone.intellij.run.generator
Owner: Aldo Borrero
Generates XML Run configurations files for Intellij with YAML
https://github.com/41north/gradle-intellij-run-generator-plugin
Sources: https://github.com/41north/gradle-intellij-run-generator-plugin
Version 0.2.0 (latest)
Created 07 August 2020.
Generates XML Run configurations files for Intellij with YAML
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.north.fortyone.intellij.run.generator") version "0.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("dev.north.fortyone.intellij.run.generator:dev.north.fortyone.intellij.run.generator.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("dev.north.fortyone.intellij.run.generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.north.fortyone.intellij.run.generator:dev.north.fortyone.intellij.run.generator.gradle.plugin:0.2.0") } } apply(plugin = "dev.north.fortyone.intellij.run.generator")
- Applying plugins to all subprojects .