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.3.2 (latest)

1.3.2

Created 27 July 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.3.2"
}

See also:

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