Download kite-morphlines-solr-core-0.17.0.jar file

Introduction

You can download kite-morphlines-solr-core-0.17.0.jar in this page.

License

Apache License

Type List

kite-morphlines-solr-core-0.17.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.kitesdk/kite-morphlines-solr-core/pom.properties
META-INF/maven/org.kitesdk/kite-morphlines-solr-core/pom.xml
org.kitesdk.morphline.solr.DocumentLoader.class
org.kitesdk.morphline.solr.FileUtils.class
org.kitesdk.morphline.solr.GenerateSolrSequenceKeyBuilder.class
org.kitesdk.morphline.solr.LoadSolrBuilder.class
org.kitesdk.morphline.solr.SafeConcurrentUpdateSolrServer.class
org.kitesdk.morphline.solr.SanitizeUnknownSolrFieldsBuilder.class
org.kitesdk.morphline.solr.SolrLocator.class
org.kitesdk.morphline.solr.SolrMorphlineContext.class
org.kitesdk.morphline.solr.SolrServerDocumentLoader.class
org.kitesdk.morphline.solr.TokenizeTextBuilder.class
org.kitesdk.morphline.solr.ZooKeeperDownloader.class

Pom

kite-morphlines-solr-core-0.17.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2013 Cloudera Inc.

 Licensed 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">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.kitesdk</groupId>
    <artifactId>kite-morphlines</artifactId>
    <version>0.17.0</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>kite-morphlines-solr-core</artifactId>
  <name>Kite Morphlines Solr Core</name>

  <dependencies>

    <dependency>
      <groupId>org.kitesdk</groupId>
      <artifactId>kite-morphlines-core</artifactId>
    </dependency>

    <dependency> <!-- see http://lucene.apache.org/solr -->
      <groupId>org.apache.solr</groupId>
      <artifactId>solr-test-framework</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency> <!-- see http://lucene.apache.org/solr -->
      <groupId>org.apache.solr</groupId>
      <artifactId>solr-core</artifactId>
      <exclusions>
        <exclusion>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-jdk14</artifactId> <!-- instead use slf4j on top of log4j or logback  -->
        </exclusion>
      </exclusions>
    </dependency>

    <dependency>
      <groupId>org.kitesdk</groupId>
      <artifactId>kite-morphlines-core</artifactId>
      <type>test-jar</type>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.kitesdk</groupId>
      <artifactId>kite-morphlines-avro</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency> <!-- (required by solrj) see http://www.slf4j.org -->
      <groupId>org.slf4j</groupId>
      <artifactId>jcl-over-slf4j</artifactId>
    </dependency>

  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <argLine>-Dtests.locale=en_us</argLine>
          <!--<forkMode>always</forkMode>-->
          <redirectTestOutputToFile>true</redirectTestOutputToFile>
          <systemPropertyVariables>
            <solr.expected.version>${solr.expected.version}</solr.expected.version>
            <java.awt.headless>true</java.awt.headless>
          </systemPropertyVariables>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-antrun-plugin</artifactId>
        <executions>
          <execution>
            <id>copy-test-env</id>
            <phase>process-test-resources</phase>
            <configuration>
              <target>
                <copy todir="${project.build.directory}/test-classes">
                  <fileset dir="${basedir}/../kite-morphlines-core/src/test/resources" />
                </copy>
              </target>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

    </plugins>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.kitesdk</groupId>
   <artifactId>kite-morphlines-solr-core</artifactId>
   <version>0.17.0</version>
</dependency>

Download

If you think the following kite-morphlines-solr-core-0.17.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download kite-morphlines-solr-core-0.17.0.jar file




PreviousNext

Related