ca.coglinc2.javacc
Owner:
Eitan Adler
A JavaCC plugin for Gradle
https://github.com/johnmartel/javaccPlugin
Sources: https://github.com/johnmartel/javaccPlugin
Version 3.0.0 (latest)
Created 12 April 2017.
A JavaCC plugin for Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("ca.coglinc2.javacc") version "3.0.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("ca.coglinc2.javacc:ca.coglinc2.javacc.gradle.plugin:3.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("ca.coglinc2.javacc") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ca.coglinc2.javacc:ca.coglinc2.javacc.gradle.plugin:3.0.0") } } apply(plugin = "ca.coglinc2.javacc")
- Applying plugins to all subprojects .