io.github.marc-christian-schulze.structs4java.structs4java-gradle-plugin
Owner:
Marc-Christian Schulze
Structs4Java is a code generator based on C/C++ structures.
https://github.com/marc-christian-schulze/structs4java
Sources: https://github.com/marc-christian-schulze/structs4java.git
Version 1.2.8 (latest)
Created 27 December 2024.
Structs4Java is a code generator based on C/C++ structures.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.marc-christian-schulze.structs4java.structs4java-gradle-plugin") version "1.2.8"
}
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("io.github.marc-christian-schulze.structs4java.structs4java-gradle-plugin:io.github.marc-christian-schulze.structs4java.structs4java-gradle-plugin.gradle.plugin:1.2.8") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.marc-christian-schulze.structs4java.structs4java-gradle-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.marc-christian-schulze.structs4java.structs4java-gradle-plugin:io.github.marc-christian-schulze.structs4java.structs4java-gradle-plugin.gradle.plugin:1.2.8") } } apply(plugin = "io.github.marc-christian-schulze.structs4java.structs4java-gradle-plugin")
- Applying plugins to all subprojects .