Github user jackylk commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/2003#discussion_r170865978
  
    --- Diff: datamap/lucene/pom.xml ---
    @@ -0,0 +1,152 @@
    +<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.apache.carbondata</groupId>
    +    <artifactId>carbondata-parent</artifactId>
    +    <version>1.4.0-SNAPSHOT</version>
    +    <relativePath>../../pom.xml</relativePath>
    +  </parent>
    +
    +  <artifactId>carbondata-lucene</artifactId>
    +  <name>Apache CarbonData :: Lucene Index DataMap</name>
    +
    +  <properties>
    +    <dev.path>${basedir}/../../dev</dev.path>
    +    <lucene.version>6.3.0</lucene.version>
    +    <solr.version>6.3.0</solr.version>
    +  </properties>
    +
    +  <dependencies>
    +    <dependency>
    +      <groupId>org.apache.carbondata</groupId>
    +      <artifactId>carbondata-spark2</artifactId>
    +      <version>${project.version}</version>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.apache.lucene</groupId>
    +      <artifactId>lucene-core</artifactId>
    +      <version>${lucene.version}</version>
    +      <exclusions>
    +        <exclusion>
    +          <groupId>*</groupId>
    +          <artifactId>*</artifactId>
    +        </exclusion>
    +      </exclusions>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.apache.lucene</groupId>
    +      <artifactId>lucene-analyzers-common</artifactId>
    +      <version>${lucene.version}</version>
    +      <exclusions>
    +        <exclusion>
    +          <groupId>*</groupId>
    +          <artifactId>*</artifactId>
    +        </exclusion>
    +      </exclusions>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.apache.lucene</groupId>
    +      <artifactId>lucene-queryparser</artifactId>
    +      <version>${lucene.version}</version>
    +      <exclusions>
    +        <exclusion>
    +          <groupId>*</groupId>
    +          <artifactId>*</artifactId>
    +        </exclusion>
    +      </exclusions>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.apache.lucene</groupId>
    +      <artifactId>lucene-sandbox</artifactId>
    +      <version>${lucene.version}</version>
    +      <exclusions>
    +        <exclusion>
    +          <groupId>*</groupId>
    +          <artifactId>*</artifactId>
    +        </exclusion>
    +      </exclusions>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.apache.solr</groupId>
    +      <artifactId>solr-core</artifactId>
    +      <version>${solr.version}</version>
    +      <exclusions>
    +        <exclusion>
    +          <groupId>*</groupId>
    +          <artifactId>*</artifactId>
    +        </exclusion>
    +      </exclusions>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.apache.solr</groupId>
    +      <artifactId>solr-solrj</artifactId>
    +      <version>${solr.version}</version>
    +      <exclusions>
    +        <exclusion>
    +          <groupId>*</groupId>
    +          <artifactId>*</artifactId>
    +        </exclusion>
    +      </exclusions>
    +    </dependency>
    +    <dependency>
    +      <groupId>org.scalatest</groupId>
    +      <artifactId>scalatest_${scala.binary.version}</artifactId>
    +      <scope>test</scope>
    +    </dependency>
    +  </dependencies>
    +
    +  <build>
    +    <testSourceDirectory>src/test/scala</testSourceDirectory>
    +    <resources>
    +      <resource>
    +        <directory>src/resources</directory>
    +      </resource>
    +      <resource>
    +        <directory>.</directory>
    +        <includes>
    +          <include>CARBON_SPARK_INTERFACELogResource.properties</include>
    --- End diff --
    
    fixed


---

Reply via email to