Search Gradle plugins

Version 0.1.1 (latest)

Created 16 August 2017.

Grafie encrypts and decrypts files in your workspace. Use it to protect sensitive information in your public git repositories!

Using the plugins DSL:

plugins {
  id("de.eightbitboy.grafie") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.de.eightbitboy:grafie:0.1.1")
  }
}

apply(plugin = "de.eightbitboy.grafie")

Using the plugins DSL:

plugins {
  id "de.eightbitboy.grafie" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.de.eightbitboy:grafie:0.1.1"
  }
}

apply plugin: "de.eightbitboy.grafie"

Learn how to apply plugins to subprojects