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-SNAPSHOT
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
Add this plugin to your build using the plugins DSL:
plugins {
id("com.needhamsoftware.solr-gradle") version "1.0-SNAPSHOT"
}
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-SNAPSHOT") }
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-SNAPSHOT") } } apply(plugin = "com.needhamsoftware.solr-gradle")
- Applying plugins to all subprojects .