搜索 Gradle 插件

版本 0.1.1 (最新版)

0.1.1

创建于 2017 年 8 月 16 日。

Grafie 可加密和解密您的工作空间文件。使用它来保护您公共 git 仓库中的敏感信息!

使用插件 DSL

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

使用旧插件应用

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

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

使用插件 DSL

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

使用旧插件应用

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

apply plugin: "de.eightbitboy.grafie"

学习如何应用插件到子项目中