Github user gvramana commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2366#discussion_r195970266
--- Diff: examples/spark2/pom.xml ---
@@ -204,5 +204,35 @@
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
+ <profile>
+ <id>spark-2.3</id>
+ <properties>
+ <spark.version>2.3.0</spark.version>
+ <scala.binary.version>2.11</scala.binary.version>
+ <scala.version>2.11.8</scala.version>
+ </properties>
+ <dependencies>
+ <!-- in spark 2.3 spark catalyst added dependency on spark-core-->
+ <dependency>
+ <groupId>org.apache.spark</groupId>
+ <artifactId>spark-core_${scala.binary.version}</artifactId>
+ <version>${spark.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.carbondata</groupId>
+ <artifactId>carbondata-core</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <!-- need to Exclude net.jpountz jar from this project.
--- End diff --
Raise another PR to fix jar dependency problem, lz4
---