You can download solr-test-framework-4.3.0.jar in this page.
Apache License
solr-test-framework-4.3.0.jar file has the following types.
META-INF/LICENSE.txt META-INF/MANIFEST.MF META-INF/NOTICE.txt org.apache.solr.BaseDistributedSearchTestCase.class org.apache.solr.CollectionTester.class org.apache.solr.JSONTestUtil.class org.apache.solr.SolrIgnoredThreadsFilter.class org.apache.solr.SolrJettyTestBase.class org.apache.solr.SolrTestCaseJ4.class org.apache.solr.analysis.MockCharFilterFactory.class org.apache.solr.analysis.MockTokenFilterFactory.class org.apache.solr.analysis.MockTokenizerFactory.class org.apache.solr.analysis.StringMockSolrResourceLoader.class org.apache.solr.cloud.AbstractDistribZkTestBase.class org.apache.solr.cloud.AbstractFullDistribZkTestBase.class org.apache.solr.cloud.AbstractZkTestCase.class org.apache.solr.cloud.ChaosMonkey.class org.apache.solr.cloud.ZkTestServer.class org.apache.solr.core.MockDirectoryFactory.class org.apache.solr.core.MockFSDirectoryFactory.class org.apache.solr.update.processor.BufferingRequestProcessor.class org.apache.solr.util.AbstractSolrTestCase.class org.apache.solr.util.BaseTestHarness.class org.apache.solr.util.DOMUtilTestBase.class org.apache.solr.util.ExternalPaths.class org.apache.solr.util.RESTfulServerProvider.class org.apache.solr.util.RestTestBase.class org.apache.solr.util.RestTestHarness.class org.apache.solr.util.RevertDefaultThreadHandlerRule.class org.apache.solr.util.TestHarness.class
solr-test-framework-4.3.0.pom file content.
<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/maven-v4_0_0.xsd"> <!-- 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. --> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.solr</groupId> <artifactId>solr-parent</artifactId> <version>4.3.0</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.apache.solr</groupId> <artifactId>solr-test-framework</artifactId> <packaging>jar</packaging> <name>Apache Solr Test Framework</name> <description>Apache Solr Test Framework</description> <properties> <module-directory>solr/test-framework</module-directory> <relative-top-level>../../..</relative-top-level> <module-path>${relative-top-level}/${module-directory}</module-path> </properties> <scm> <connection>scm:svn:${vc-anonymous-base-url}/${module-directory}</connection> <developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection> <url>${vc-browse-base-url}/${module-directory}</url> </scm> <dependencies> <!-- These dependencies are compile scope because this is a test framework. --> <dependency> <!-- lucene-test-framework dependency must come before lucene-core --> <groupId>org.apache.lucene</groupId> <artifactId>lucene-test-framework</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>solr-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <!-- SOLR-3263: Provided scope is required to avoid jar signing conflicts --> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-util</artifactId> </dependency> <!-- If your tests don't use BaseDistributedSearchTestCase or SolrJettyTestBase, you can exclude the two Jetty dependencies below. --> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-webapp</artifactId> <scope>runtime</scope> </dependency> </dependencies> <build> <sourceDirectory>${module-path}/src/java</sourceDirectory> <testSourceDirectory>${module-path}/src/test</testSourceDirectory> <resources> <resource> <directory>${module-path}</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>de.thetaphi</groupId> <artifactId>forbiddenapis</artifactId> <executions> <execution> <id>solr-shared-check-forbidden-apis</id> <phase>none</phase> <!-- Block inherited execution --> </execution> <execution> <id>solr-shared-test-check-forbidden-apis</id> <phase>none</phase> <!-- Block inherited execution --> </execution> <execution> <id>check-forbidden-apis</id> <configuration> <!-- disallow undocumented classes like sun.misc.Unsafe: --> <internalRuntimeForbidden>true</internalRuntimeForbidden> <bundledSignatures> <bundledSignature>jdk-unsafe</bundledSignature> <bundledSignature>jdk-deprecated</bundledSignature> <bundledSignature>commons-io-unsafe-${commons-io.version}</bundledSignature> </bundledSignatures> <signaturesFiles> <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile> <signaturesFile>${top-level}/lucene/tools/forbiddenApis/tests.txt</signaturesFile> <signaturesFile>${top-level}/lucene/tools/forbiddenApis/executors.txt</signaturesFile> </signaturesFiles> </configuration> <goals> <goal>check</goal> <!-- NOT testcheck --> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.apache.solr</groupId> <artifactId>solr-test-framework</artifactId> <version>4.3.0</version> </dependency>
If you think the following solr-test-framework-4.3.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download solr-test-framework-4.3.0.jar file