搜索Gradle插件

版本 0.1(最新版)

0.1

创建日期:2020年9月5日。

检查属性是否有不同配置文件的不同值。

使用plugins DSL

plugins {
  id("com.github.edineipiovesan") version "0.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.edineipiovesan:spring-profile-config-checker:1.0-SNAPSHOT")
  }
}

apply(plugin = "com.github.edineipiovesan")

使用plugins DSL

plugins {
  id "com.github.edineipiovesan" version "0.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.edineipiovesan:spring-profile-config-checker:1.0-SNAPSHOT"
  }
}

apply plugin: "com.github.edineipiovesan"

了解如何将插件应用于子项目