Search Gradle plugins

com.osm.gradle.plugins.rustic

You can execute cargo commands from Gradle. This allows you to combine the rich features of Gradle with Cargo's actions.

https://www.osamu-storage.info/

Sources: https://github.com/sam-osamu/rustic

Version 0.1.6

Created 21 January 2020.

You can execute cargo commands from Gradle. This allows you to combine the rich features of Gradle with Cargo's actions.

Using the plugins DSL:

plugins {
  id("com.osm.gradle.plugins.rustic") version "0.1.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.osm.gradle.plugins:rustic:0.1.6")
  }
}

apply(plugin = "com.osm.gradle.plugins.rustic")

Using the plugins DSL:

plugins {
  id "com.osm.gradle.plugins.rustic" version "0.1.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.osm.gradle.plugins:rustic:0.1.6"
  }
}

apply plugin: "com.osm.gradle.plugins.rustic"

Learn how to apply plugins to subprojects