Back to home page

OSCL-LXR

 
 

    


0001 <?xml version="1.0" encoding="UTF-8"?>
0002 <!--
0003   ~ Licensed to the Apache Software Foundation (ASF) under one or more
0004   ~ contributor license agreements.  See the NOTICE file distributed with
0005   ~ this work for additional information regarding copyright ownership.
0006   ~ The ASF licenses this file to You under the Apache License, Version 2.0
0007   ~ (the "License"); you may not use this file except in compliance with
0008   ~ the License.  You may obtain a copy of the License at
0009   ~
0010   ~    http://www.apache.org/licenses/LICENSE-2.0
0011   ~
0012   ~ Unless required by applicable law or agreed to in writing, software
0013   ~ distributed under the License is distributed on an "AS IS" BASIS,
0014   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0015   ~ See the License for the specific language governing permissions and
0016   ~ limitations under the License.
0017   -->
0018 
0019 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
0020          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
0021   <modelVersion>4.0.0</modelVersion>
0022   <parent>
0023     <groupId>org.apache.spark</groupId>
0024     <artifactId>spark-parent_2.12</artifactId>
0025     <version>3.0.0</version>
0026     <relativePath>../../pom.xml</relativePath>
0027   </parent>
0028 
0029   <artifactId>spark-kvstore_2.12</artifactId>
0030   <packaging>jar</packaging>
0031   <name>Spark Project Local DB</name>
0032   <url>http://spark.apache.org/</url>
0033   <properties>
0034     <sbt.project.name>kvstore</sbt.project.name>
0035   </properties>
0036 
0037   <dependencies>
0038     <dependency>
0039       <groupId>org.apache.spark</groupId>
0040       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0041     </dependency>
0042 
0043     <dependency>
0044       <groupId>com.google.guava</groupId>
0045       <artifactId>guava</artifactId>
0046     </dependency>
0047     <dependency>
0048       <groupId>${leveldbjni.group}</groupId>
0049       <artifactId>leveldbjni-all</artifactId>
0050     </dependency>
0051     <dependency>
0052       <groupId>com.fasterxml.jackson.core</groupId>
0053       <artifactId>jackson-core</artifactId>
0054     </dependency>
0055     <dependency>
0056       <groupId>com.fasterxml.jackson.core</groupId>
0057       <artifactId>jackson-databind</artifactId>
0058     </dependency>
0059     <dependency>
0060       <groupId>com.fasterxml.jackson.core</groupId>
0061       <artifactId>jackson-annotations</artifactId>
0062     </dependency>
0063 
0064     <dependency>
0065       <groupId>commons-io</groupId>
0066       <artifactId>commons-io</artifactId>
0067       <scope>test</scope>
0068     </dependency>
0069     <dependency>
0070       <groupId>log4j</groupId>
0071       <artifactId>log4j</artifactId>
0072       <scope>test</scope>
0073     </dependency>
0074     <dependency>
0075       <groupId>org.slf4j</groupId>
0076       <artifactId>slf4j-api</artifactId>
0077       <scope>test</scope>
0078     </dependency>
0079     <dependency>
0080       <groupId>org.slf4j</groupId>
0081       <artifactId>slf4j-log4j12</artifactId>
0082       <scope>test</scope>
0083     </dependency>
0084     <dependency>
0085       <groupId>io.dropwizard.metrics</groupId>
0086       <artifactId>metrics-core</artifactId>
0087       <scope>test</scope>
0088     </dependency>
0089 
0090     <!--
0091       This spark-tags test-dep is needed even though it isn't used in this module, otherwise testing-cmds that exclude
0092       them will yield errors.
0093     -->
0094     <dependency>
0095       <groupId>org.apache.spark</groupId>
0096       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0097       <type>test-jar</type>
0098       <scope>test</scope>
0099     </dependency>
0100   </dependencies>
0101 
0102   <build>
0103     <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
0104     <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
0105   </build>
0106 </project>