Search Gradle plugins

com.sourcegraph.sourcegraph-plugin

Plugin for collecting Gradle build information into JSON files that can be used by Sourcegraph

http://www.sourcegraph.com

Sources: https://github.com/sourcegraph/sourcegraph-gradle-plugin

Version 1.0.22

1.0.22

Created 02 May 2017.

Plugin for collecting Gradle build information into JSON files that can be used by Sourcegraph

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.sourcegraph.sourcegraph-plugin") version "1.0.22"
}

See also:

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