Solr Maven Plugin

A maven plugin to start and stop solr cloud

License

License

Categories

Categories

Maven Build Tools
GroupId

GroupId

io.github.borisnaguet
ArtifactId

ArtifactId

solr-maven-plugin
Last Version

Last Version

0.5.0
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Solr Maven Plugin
A maven plugin to start and stop solr cloud
Project URL

Project URL

https://github.com/BorisNaguet/solr-maven-plugin
Source Code Management

Source Code Management

https://github.com/BorisNaguet/solr-maven-plugin

Download solr-maven-plugin

How to add to project

<plugin>
    <groupId>io.github.borisnaguet</groupId>
    <artifactId>solr-maven-plugin</artifactId>
    <version>0.5.0</version>
</plugin>

Dependencies

compile (8)

Group / Artifact Type Version
org.apache.solr : solr-core jar 7.2.1
org.apache.solr : solr-test-framework jar 7.2.1
org.apache.maven : maven-plugin-api jar 3.3.9
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.4
org.apache.maven : maven-core jar 3.3.9
junit : junit jar 4.12
org.slf4j : log4j-over-slf4j jar 1.7.7
ch.qos.logback : logback-classic jar 1.1.7

test (1)

Group / Artifact Type Version
org.apache.maven.shared : maven-verifier jar 1.6

Project Modules

There are no modules declared in this project.

solr-maven-plugin

Build Status Maven Central

A maven plugin to start/stop Apache Solr Cloud.

Install

Releases available on maven Central

<plugin>
    <groupId>io.github.borisnaguet</groupId>
    <artifactId>solr-maven-plugin</artifactId>
    <version>0.5.0</version>
</plugin>

Snapshots (pushed automatically from Travis, on each push) available on Sonatype repository:

<pluginRepositories>
	<pluginRepository>
		<id>ossrh</id>
		<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
		<releases>
			<enabled>false</enabled>
		</releases>
		<snapshots>
			<enabled>true</enabled>
		</snapshots>
	</pluginRepository>
</pluginRepositories>
<plugin>
    <groupId>io.github.borisnaguet</groupId>
    <artifactId>solr-maven-plugin</artifactId>
    <version>0.6.0-SNAPSHOT</version>
</plugin>

Use

Please, see solr-maven-plugin-test sub-project for a full example:

  • running Solr cloud with default configuration for before tests
  • stopping after tests
  • starting another configuration (with lots of custom setups) of Solr in pre-integration-test (note that you must enable IT in the example to see that <skipITs>false</skipITs>)
  • stopping it in post-integration-tests

You probably need only one of these (tests or integration-tests), and default configuration is probably enough for most usage.

	<plugin>
		<groupId>io.github.borisnaguet</groupId>
		<artifactId>solr-maven-plugin</artifactId>
		<version>${project.version}</version>
		<executions>
			<!-- Unit tests: tests default configuration parameters -->
			<execution>
				<id>start-tests</id>
				<phase>process-test-resources</phase>
				<goals>
					<goal>start-solrcloud</goal>
				</goals>
				<configuration>
					<skip>${skipTests}</skip>
				</configuration>
			</execution>
			<execution>
				<id>stop-tests</id>
				<phase>prepare-package</phase>
				<goals>
					<goal>stop-solrcloud</goal>
				</goals>
				<configuration>
					<skip>${skipTests}</skip>
					<deleteConf>true</deleteConf>
					<deleteData>true</deleteData>
				</configuration>
			</execution>
			
			<!-- INTEGRATION tests: use of all config -->
			<execution>
				<id>start-IT</id>
				<!-- default phase is pre-integration-test -->
				<goals>
					<goal>start-solrcloud</goal>
				</goals>
				<configuration>
					<skip>${skipITs}</skip>
					<zkPort>9984</zkPort>
					
					<uploadConfig>false</uploadConfig>
					<confToUploadDir>solr-it-conf</confToUploadDir>
					
					<createCols>false</createCols>
					<!-- collections that were previously created in baseDir -->
					<collectionsToCreate>
						<collectionsToCreate>col1</collectionsToCreate>
						<collectionsToCreate>testCol</collectionsToCreate>
					</collectionsToCreate>
					<baseDir>solr-it-data</baseDir>
					<chroot>/solr</chroot>
					<numServers>2</numServers>
				</configuration>
			</execution>
			<execution>
				<id>stop-IT</id>
				<!-- default phase is post-integration-test -->
				<goals>
					<goal>stop-solrcloud</goal>
				</goals>
				<configuration>
					<skip>${skipITs}</skip>
				</configuration>
			</execution>
		</executions>
</plugin> 

All goals and parameters are available on the maven site (with default values and likecycle phases).

Add extra jars

In Solr, you may need to add jars to the classpath of the server, and reference some features in the solrconfig.xml (for example).

To do that, add that to the plugin definition (just after its groupid:artifactid:version):

<dependencies>
	<dependency>
		<groupId>org.apache.solr</groupId>
		<artifactId>solr-analysis-extras</artifactId>
		<version>7.2.1</version>
	</dependency>
	<dependency>
		<groupId>org.apache.solr</groupId>
		<artifactId>solr-dataimporthandler</artifactId>
		<version>7.2.1</version>
	</dependency>
</dependencies>

Now, you can reference it in solrconfig.xml:

<!-- lib import needed for standard deployment (not by plugin) -->
<lib dir="${solr.install.dir:..}/dist/" regex="solr-dataimporthandler-\d.*\.jar" />

<requestHandler name="/dataimport" class="org.apache.solr.handler.dataimport.DataImportHandler">
    <lst name="defaults">
      <str name="config">data-config.xml</str>
    </lst>
</requestHandler>

Standalone start

We've seen how to start & stop Solr with your maven build (using default phase or not). But what if you want to start solr using the same version & config and run tests from Eclipse/IntelliJ and/or execute queries manually against it after/before tests. Since version 0.3.0 you can start it with a command line:

mvn io.github.borisnaguet:solr-maven-plugin:run

If you feel it's a bit long, you can use this trick:

mvn solr:run

The previous command will only use the configuration at the plugin level - not inside executions. If you configured the plugin inside an execution, you can specify its id with maven:

mvn solr:run@start-IT

After a while you'll see that:

[INFO] ------------------------------------------------------------------
[INFO] Hit ENTER on the console to stop Solr and continue the build.

So it's better to clean stop with Enter instead of kill.

Solr version

As is, the plugin starts Solr 7.2.1 (will be updated with time of course). If you need another version, you might try to directly change the "classpath" of the plugin:

These are the only dependencies that you need to update:

				<plugin>
					<groupId>io.github.borisnaguet</groupId>
					<artifactId>solr-maven-plugin</artifactId>
					<version>${plugin.version}</version>
					<dependencies>
						<dependency>
							<groupId>org.apache.solr</groupId>
							<artifactId>solr-core</artifactId>
							<version>${solr.version}</version>
						</dependency>
						<dependency>
							<groupId>org.apache.solr</groupId>
							<artifactId>solr-test-framework</artifactId>
							<version>${solr.version}</version>
						</dependency>
					</dependencies>
...

Of course, it can only work until some breaking change is introduced somewhere. Please inform me if this doesn't work on a particular version.

Also please note that Solr 6+ requires Java 8 (Since 0.5.0 this plugin also needs Java 8 - use 0.4.0 if you need to run older release of Solr).

To improve

This plugin is already used in a large professional project, but it could still be improved.

Build (for maven plugin developpers)

If you want to fork this project and make changes to the plugin, you'll only need to use maven install

Contribute

Yes!

Please fill an issue, or a PR. https://github.com/BorisNaguet/solr-maven-plugin/issues

Versions

Version
0.5.0
0.4.0
0.3.0
0.2.0
0.1.0
0.0.1