搜索Gradle插件

版本 1.1.0 (最新版)

1.1.0

创建于2017年11月28日。

将Java应用程序包装为Windows服务的Gradle插件

使用插件DSL

plugins {
  id("com.github.alexeylisyutenko.windows-service-plugin") version "1.1.0"
}

使用传统插件应用程序

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

apply(plugin = "com.github.alexeylisyutenko.windows-service-plugin")

使用插件DSL

plugins {
  id "com.github.alexeylisyutenko.windows-service-plugin" version "1.1.0"
}

使用传统插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.alexeylisyutenko:windows-service-plugin:1.1.0"
  }
}

apply plugin: "com.github.alexeylisyutenko.windows-service-plugin"

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