de.sayayi.gradle.mql4-plugin
Owner: Jeroen Gremmen
Gradle MQL4 Compile Task
https://github.com/jgremmen/gradle-mql4-task
Sources: https://github.com/jgremmen/gradle-mql4-task
Add this plugin to your build using the plugins DSL:
plugins {
id("de.sayayi.gradle.mql4-plugin") version "1.1.2"
}
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("de.sayayi.gradle.mql4-plugin:de.sayayi.gradle.mql4-plugin.gradle.plugin:1.1.2") }
It can then be applied in the precompiled script plugin:plugins { id("de.sayayi.gradle.mql4-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.sayayi.gradle.mql4-plugin:de.sayayi.gradle.mql4-plugin.gradle.plugin:1.1.2") } } apply(plugin = "de.sayayi.gradle.mql4-plugin")
- Applying plugins to all subprojects .