You can download storm-solr-2.0.0.jar in this page.
Apache License
storm-solr-2.0.0.jar file has the following types.
META-INF/DEPENDENCIES META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.storm/storm-solr/pom.properties META-INF/maven/org.apache.storm/storm-solr/pom.xml org.apache.storm.solr.bolt.SolrUpdateBolt.class org.apache.storm.solr.config.CountBasedCommit.class org.apache.storm.solr.config.SolrCommitStrategy.class org.apache.storm.solr.config.SolrConfig.class org.apache.storm.solr.mapper.SolrFieldsMapper.class org.apache.storm.solr.mapper.SolrJsonMapper.class org.apache.storm.solr.mapper.SolrMapper.class org.apache.storm.solr.mapper.SolrMapperException.class org.apache.storm.solr.schema.CopyField.class org.apache.storm.solr.schema.Field.class org.apache.storm.solr.schema.FieldType.class org.apache.storm.solr.schema.Schema.class org.apache.storm.solr.schema.SolrFieldTypeFinder.class org.apache.storm.solr.schema.builder.RestJsonSchemaBuilder.class org.apache.storm.solr.schema.builder.RestJsonSchemaBuilderV2.class org.apache.storm.solr.schema.builder.SchemaBuilder.class org.apache.storm.solr.trident.SolrState.class org.apache.storm.solr.trident.SolrStateFactory.class org.apache.storm.solr.trident.SolrUpdater.class
storm-solr-2.0.0.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!--/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */--> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>storm</artifactId> <groupId>org.apache.storm</groupId> <version>2.0.0</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>storm-solr</artifactId> <developers> <developer> <id>hmcl</id> <name>Hugo Louro</name> <email>hmclouro@gmail.com</email> </developer> </developers> <properties> <solr.version>5.5.5</solr.version> <!-- Required downgrade by solr-core 5.5.5 --> <guava.version>17.0</guava.version> </properties> <dependencies> <dependency> <groupId>org.apache.storm</groupId> <artifactId>storm-client</artifactId> <version>${project.version}</version> <scope>${provided.scope}</scope> </dependency> <!-- Solr and its dependencies --> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-solrj</artifactId> <version>${solr.version}</version> <exclusions> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.3</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> </dependency> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-core</artifactId> <version>${solr.version}</version> <scope>test</scope> <exclusions> <exclusion> <!-- This is leaking from hadoop-annotations. --> <groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-test-framework</artifactId> <version>${solr.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <!--test dependencies --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.3.1</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <!--Note - the version would be inherited--> <configuration> <maxAllowedViolations>47</maxAllowedViolations> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.apache.storm</groupId> <artifactId>storm-solr</artifactId> <version>2.0.0</version> </dependency>
If you think the following storm-solr-2.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download storm-solr-2.0.0.jar file