搜索Gradle插件

版本 1.0.0 (最新版)

1.0.0

创建于2023年9月11日。

允许在开发者环境中启动、停止和重启通用服务

使用插件DSL

plugins {
  id("com.brunoritz.gradle.generic-service-control") version "1.0.0"
}

使用旧插件应用程序

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

apply(plugin = "com.brunoritz.gradle.generic-service-control")

使用插件DSL

plugins {
  id "com.brunoritz.gradle.generic-service-control" version "1.0.0"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.brunoritz.gradle:service-control:1.0.0"
  }
}

apply plugin: "com.brunoritz.gradle.generic-service-control"

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