| <?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"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <artifactId>kylin-server</artifactId> |
| <packaging>jar</packaging> |
| <name>Kylin - REST Server</name> |
| <url>http://kylin.apache.org</url> |
| <description>REST Service and RPC Server</description> |
| |
| <parent> |
| <artifactId>kylin</artifactId> |
| <groupId>org.apache.kylin</groupId> |
| <version>5.0.0-SNAPSHOT</version> |
| <relativePath>../../pom.xml</relativePath> |
| </parent> |
| |
| <dependencies> |
| <!--Add dependencies of KAP extensions--> |
| <dependency> |
| <groupId>org.apache.kylin</groupId> |
| <artifactId>kylin-data-loading-server</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kylin</groupId> |
| <artifactId>kylin-query-server</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.kylin</groupId> |
| <artifactId>kylin-common-service</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.kylin</groupId> |
| <artifactId>kylin-metadata-server</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kylin</groupId> |
| <artifactId>kylin-common-server</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kylin</groupId> |
| <artifactId>kap-second-storage-clickhouse</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kylin</groupId> |
| <artifactId>kap-second-storage-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kylin</groupId> |
| <artifactId>kap-second-storage-ui</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.kylin</groupId> |
| <artifactId>distributed-lock-ext</artifactId> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/org.scala-lang.modules/scala-xml --> |
| <dependency> |
| <groupId>org.scala-lang.modules</groupId> |
| <artifactId>scala-xml_2.12</artifactId> |
| <version>1.0.5</version> |
| <scope>compile</scope> |
| </dependency> |
| <!-- https://mvnrepository.com/artifact/org.json4s/json4s-jackson --> |
| <dependency> |
| <groupId>org.json4s</groupId> |
| <artifactId>json4s-jackson_2.12</artifactId> |
| <version>3.7.0-M11</version> |
| <scope>compile</scope> |
| </dependency> |
| |
| <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.module/jackson-module-scala --> |
| <dependency> |
| <groupId>com.fasterxml.jackson.module</groupId> |
| <artifactId>jackson-module-scala_2.12</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| |
| <!-- Add spring boot --> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-web</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-logging</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-actuator</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-logging</artifactId> |
| </exclusion> |
| <exclusion> |
| <artifactId>spring-context</artifactId> |
| <groupId>org.springframework</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-logging</artifactId> |
| </exclusion> |
| <exclusion> |
| <artifactId>spring-context</artifactId> |
| <groupId>org.springframework</groupId> |
| </exclusion> |
| <exclusion> |
| <artifactId>snakeyaml</artifactId> |
| <groupId>org.yaml</groupId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-jdbc</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.session</groupId> |
| <artifactId>spring-session-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.session</groupId> |
| <artifactId>spring-session-jdbc</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.session</groupId> |
| <artifactId>spring-session-data-redis</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-log4j2</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.cloud</groupId> |
| <artifactId>spring-cloud-starter-zookeeper-discovery</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>io.reactivex</groupId> |
| <artifactId>rxnetty</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>javax.ws.rs</groupId> |
| <artifactId>jsr311-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>de.codecentric</groupId> |
| <artifactId>spring-boot-admin-starter-client</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.taobao.arthas</groupId> |
| <artifactId>arthas-spring-boot-starter</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>io.micrometer</groupId> |
| <artifactId>micrometer-registry-prometheus</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.postgresql</groupId> |
| <artifactId>postgresql</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.lmax</groupId> |
| <artifactId>disruptor</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.latencyutils</groupId> |
| <artifactId>LatencyUtils</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.javassist</groupId> |
| <artifactId>javassist</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-common</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.commons</groupId> |
| <artifactId>commons-lang3</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>io.reactivex</groupId> |
| <artifactId>rxjava</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>com.h2database</groupId> |
| <artifactId>h2</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <!-- mysql --> |
| <dependency> |
| <groupId>mysql</groupId> |
| <artifactId>mysql-connector-java</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <!-- clickhouse jdbc --> |
| <dependency> |
| <groupId>${clickhouse.group}</groupId> |
| <artifactId>${clickhouse.artifact}</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-mapreduce-client-core</artifactId> |
| </dependency> |
| <!-- spark --> |
| <dependency> |
| <groupId>org.apache.spark</groupId> |
| <artifactId>spark-core_2.12</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.spark</groupId> |
| <artifactId>spark-sql_2.12</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.spark</groupId> |
| <artifactId>spark-hive_2.12</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.spark</groupId> |
| <artifactId>spark-yarn_2.12</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.curator</groupId> |
| <artifactId>curator-test</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-inline</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-test</artifactId> |
| <scope>test</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-starter-logging</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.vintage</groupId> |
| <artifactId>junit-vintage-engine</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-hdfs</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-yarn-client</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hive</groupId> |
| <artifactId>hive-common</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hive</groupId> |
| <artifactId>hive-exec</artifactId> |
| <scope>compile</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.powermock</groupId> |
| <artifactId>powermock-module-junit4</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.powermock</groupId> |
| <artifactId>powermock-api-mockito2</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <configuration> |
| <archive> |
| <manifest> |
| <addClasspath>true</addClasspath> |
| <classpathPrefix>lib/</classpathPrefix> |
| <useUniqueVersions>false</useUniqueVersions> |
| <mainClass>org.apache.kylin.rest.BootstrapServer</mainClass> |
| </manifest> |
| </archive> |
| <outputDirectory>${project.build.directory}</outputDirectory> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>copy-dependencies</id> |
| <phase>package</phase> |
| <goals> |
| <goal>copy-dependencies</goal> |
| </goals> |
| <configuration> |
| <outputDirectory> |
| ${project.build.directory}/jars/ |
| </outputDirectory> |
| <includeScope>compile</includeScope> |
| <excludeGroupIds> |
| log4j, |
| org.spark-project.hive, |
| org.slf4j, |
| xerces, |
| org.anltr, |
| org.apache.arrow, |
| org.apache.avro, |
| org.apache.derby, |
| org.apache.directory.server, |
| org.apache.hadoop, |
| org.apache.hive, |
| org.apache.hive.hcatalog, |
| org.apache.spark, |
| org.apache.kafka, |
| org.apache.zookeeper, |
| org.glassfish.jersey, |
| org.glassfish.hk2, |
| org.glassfish.hk2.external, |
| org.json4s, |
| org.mortbay.jetty, |
| org.scala-lang, |
| com.google.flatbuffers, |
| com.google.inject |
| com.sun.jersey, |
| com.twitter, |
| io.dropwizard.metrics, |
| io.airlift, |
| commons-beanutils, |
| commons-cli, |
| commons-codec, |
| commons-dbcp, |
| commons-io, |
| commons-lang, |
| commons-logging, |
| commons-httpclient, |
| commons-math3, |
| commons-net, |
| commons-pool, |
| javax.activation, |
| joda-time, |
| mysql, |
| net.sf.py4j, |
| com.h2database, |
| jdk.tools, |
| </excludeGroupIds> |
| <excludeArtifactIds> |
| unused |
| </excludeArtifactIds> |
| |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.springframework.boot</groupId> |
| <artifactId>spring-boot-maven-plugin</artifactId> |
| <configuration> |
| <includes> |
| <include> |
| <groupId>null</groupId> |
| <artifactId>null</artifactId> |
| </include> |
| </includes> |
| <layout>ZIP</layout> |
| <outputDirectory>${project.build.directory}</outputDirectory> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>repackage</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| <pluginRepositories> |
| <pluginRepository> |
| <id>nexus</id> |
| <name>Kyligence Repository</name> |
| <url>https://repository.kyligence.io/repository/maven-public/ |
| </url> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| </pluginRepository> |
| </pluginRepositories> |
| <profiles> |
| <profile> |
| <id>sandbox</id> |
| <dependencies> |
| <!-- for sandbox --> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-hdfs</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-yarn-client</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hive</groupId> |
| <artifactId>hive-common</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hive</groupId> |
| <artifactId>hive-exec</artifactId> |
| </dependency> |
| <!--end for sandbox --> |
| </dependencies> |
| </profile> |
| <profile> |
| <id>hadoop-cloud</id> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-aws</artifactId> |
| <version>${hadoop.cloud.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-azure</artifactId> |
| <version>${hadoop.cloud.version}</version> |
| <exclusions> |
| <exclusion> |
| <groupId>org.codehaus.jackson</groupId> |
| <artifactId>jackson-mapper-asl</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| </dependencies> |
| </profile> |
| </profiles> |
| </project> |