Search Gradle plugins

Version 3.1.0

Created 15 February 2022.

A plugin that wraps Rust's build systems, for embedding Rust libraries in Java projects.

Using the plugins DSL:

plugins {
  id("fr.stardustenterprises.rust.wrapper") version "3.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("fr.stardustenterprises.rust:plugin:3.1.0")
  }
}

apply(plugin = "fr.stardustenterprises.rust.wrapper")

Using the plugins DSL:

plugins {
  id "fr.stardustenterprises.rust.wrapper" version "3.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "fr.stardustenterprises.rust:plugin:3.1.0"
  }
}

apply plugin: "fr.stardustenterprises.rust.wrapper"

Learn how to apply plugins to subprojects