Search Gradle plugins

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.lookout.service-artifact") version "0.4.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.lookout:service-artifact-plugin:0.4.7")
      }
    }
    
    apply(plugin = "com.github.lookout.service-artifact")
  • Applying plugins to all subprojects .