Using the Gradle plugins
This project contains three Gradle plugins:
- The Cargo plugin (dev.gobley.cargo)
- The UniFFI plugin (dev.gobley.uniffi)
- The Rust plugin (dev.gobley.rust)
These plugins are published in Maven Central. In your settings.gradle.kts, put mavenCentral() in
the pluginManagement {} block.
pluginManagement {
    repositories {
        mavenCentral()
    }
}
If you're using multi-project builds, please read The Rust plugin.