com.github.lookout.service-artifact
Owner: Lookout Engineering
Gradle plugin for building a prim and proper Lookout service artifact
https://github.com/lookout/service-artifact-gradle-plugin
Sources: https://github.com/lookout/service-artifact-gradle-plugin
Version 0.4.7 (latest)
0.4.7
Created 19 October 2015.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Gradle plugin for building a prim and proper Lookout service artifact
Using the plugins DSL:
plugins {
id("com.github.lookout.service-artifact") version "0.4.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.lookout:service-artifact-plugin:0.4.7")
}
}
apply(plugin = "com.github.lookout.service-artifact")
Using the plugins DSL:
plugins {
id "com.github.lookout.service-artifact" version "0.4.7"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.lookout:service-artifact-plugin:0.4.7"
}
}
apply plugin: "com.github.lookout.service-artifact"