Search Gradle plugins

Version 0.2 (latest)

0.2

Created 08 April 2018.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Plugin for building Rust libraries and applications using Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.ysb33r.rust.base") version "0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.ysb33r.gradle:rust-gradle-plugin:0.2")
      }
    }
    
    apply(plugin = "org.ysb33r.rust.base")
  • Applying plugins to all subprojects .