com.needhamsoftware.solr-gradle
Owner: Patrick Heck
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
1.0
Created 17 August 2016.
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
Using the plugins DSL:
plugins {
id("com.needhamsoftware.solr-gradle") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.needhamsoftware:solr-gradle:1.0")
}
}
apply(plugin = "com.needhamsoftware.solr-gradle")
Using the plugins DSL:
plugins {
id "com.needhamsoftware.solr-gradle" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.needhamsoftware:solr-gradle:1.0"
}
}
apply plugin: "com.needhamsoftware.solr-gradle"