Search Gradle plugins

com.needhamsoftware.solr-gradle

A plugin for easily uploading and downloading solr configs. Note: This plugin is for use with Apache Solr, but is not maintained or endorsed by the Apache Solr project

https://github.com/nsoft/solr-gradle

Sources: https://github.com/nsoft/solr-gradle

Version 1.0.2 (latest)

Created 05 October 2018.

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 A plugin for easily uploading and downloading solr configs. Note: This plugin is for use with Apache Solr, but is not maintained or endorsed by the Apache Solr project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.needhamsoftware.solr-gradle") version "1.0.2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.needhamsoftware.solr-gradle:com.needhamsoftware.solr-gradle.gradle.plugin:1.0.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.needhamsoftware.solr-gradle")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.needhamsoftware.solr-gradle:com.needhamsoftware.solr-gradle.gradle.plugin:1.0.2")
      }
    }
    
    apply(plugin = "com.needhamsoftware.solr-gradle")
  • Applying plugins to all subprojects .