com.github.lookout.service-artifact
所有者: Lookout Engineering
Gradle 插件,用于构建一个初具规模的 Lookout 服务工件
https://github.com/lookout/service-artifact-gradle-plugin
源代码: https://github.com/lookout/service-artifact-gradle-plugin
版本 0.4.7 (最新)
0.4.7
创建于 2015 年 10 月 19 日。
该插件版本将不再解析,因为当 JCenter 成为 Maven Central 的永久性重定向时,它仅使用 JCenter 中才有的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Gradle 插件,用于构建一个初具规模的 Lookout 服务工件
使用 plugins DSL
plugins {
id("com.github.lookout.service-artifact") version "0.4.7"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.lookout:service-artifact-plugin:0.4.7")
}
}
apply(plugin = "com.github.lookout.service-artifact")
使用 plugins DSL
plugins {
id "com.github.lookout.service-artifact" version "0.4.7"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.lookout:service-artifact-plugin:0.4.7"
}
}
apply plugin: "com.github.lookout.service-artifact"