搜索 Gradle 插件

版本 0.7.0 (最新)

0.7.0

创建于 2018 年 9 月 25 日。

微服务基础插件

使用 插件 DSL

plugins {
  id("com.glantus.service") version "0.7.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.glantus.plugin:glantus-service-plugin:0.7.0")
  }
}

apply(plugin = "com.glantus.service")

使用 插件 DSL

plugins {
  id "com.glantus.service" version "0.7.0"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.glantus.plugin:glantus-service-plugin:0.7.0"
  }
}

apply plugin: "com.glantus.service"

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