fr.stardustenterprises.rust.importer
Owner: xtrm
A plugin that makes it possible to import outputs from Rust from another Gradle project.
https://github.com/stardust-enterprises/gradle-rust
Sources: https://github.com/stardust-enterprises/gradle-rust.git
Version 3.2.5 (latest)
Created 10 August 2022.
A plugin that makes it possible to import outputs from Rust from another Gradle project.
Add this plugin to your build using the plugins DSL:
plugins {
id("fr.stardustenterprises.rust.importer") version "3.2.5"
}
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("fr.stardustenterprises.rust.importer:fr.stardustenterprises.rust.importer.gradle.plugin:3.2.5") }
It can then be applied in the precompiled script plugin:plugins { id("fr.stardustenterprises.rust.importer") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fr.stardustenterprises.rust.importer:fr.stardustenterprises.rust.importer.gradle.plugin:3.2.5") } } apply(plugin = "fr.stardustenterprises.rust.importer")
- Applying plugins to all subprojects .