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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
0020   <modelVersion>4.0.0</modelVersion>
0021   <parent>
0022     <groupId>org.apache.spark</groupId>
0023     <artifactId>spark-parent_2.12</artifactId>
0024     <version>3.0.0</version>
0025     <relativePath>../pom.xml</relativePath>
0026   </parent>
0027 
0028   <artifactId>spark-graphx_2.12</artifactId>
0029   <properties>
0030     <sbt.project.name>graphx</sbt.project.name>
0031   </properties>
0032   <packaging>jar</packaging>
0033   <name>Spark Project GraphX</name>
0034   <url>http://spark.apache.org/</url>
0035 
0036   <dependencies>
0037     <dependency>
0038       <groupId>org.apache.spark</groupId>
0039       <artifactId>spark-core_${scala.binary.version}</artifactId>
0040       <version>${project.version}</version>
0041     </dependency>
0042     <dependency>
0043       <groupId>org.apache.spark</groupId>
0044       <artifactId>spark-core_${scala.binary.version}</artifactId>
0045       <version>${project.version}</version>
0046       <type>test-jar</type>
0047       <scope>test</scope>
0048     </dependency>
0049     <dependency>
0050       <groupId>org.apache.spark</groupId>
0051       <artifactId>spark-mllib-local_${scala.binary.version}</artifactId>
0052       <version>${project.version}</version>
0053     </dependency>
0054     <dependency>
0055       <groupId>org.apache.xbean</groupId>
0056       <artifactId>xbean-asm7-shaded</artifactId>
0057     </dependency>
0058     <dependency>
0059       <groupId>com.google.guava</groupId>
0060       <artifactId>guava</artifactId>
0061     </dependency>
0062     <dependency>
0063       <groupId>com.github.fommil.netlib</groupId>
0064       <artifactId>core</artifactId>
0065       <version>${netlib.java.version}</version>
0066     </dependency>
0067     <dependency>
0068       <groupId>net.sourceforge.f2j</groupId>
0069       <artifactId>arpack_combined_all</artifactId>
0070       <version>0.1</version>
0071     </dependency>
0072     <dependency>
0073       <groupId>org.scalacheck</groupId>
0074       <artifactId>scalacheck_${scala.binary.version}</artifactId>
0075       <scope>test</scope>
0076     </dependency>
0077     <dependency>
0078       <groupId>org.apache.spark</groupId>
0079       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0080     </dependency>
0081 
0082     <!--
0083       This spark-tags test-dep is needed even though it isn't used in this module, otherwise testing-cmds that exclude
0084       them will yield errors.
0085     -->
0086     <dependency>
0087       <groupId>org.apache.spark</groupId>
0088       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0089       <type>test-jar</type>
0090       <scope>test</scope>
0091     </dependency>
0092 
0093   </dependencies>
0094   <build>
0095     <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
0096     <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
0097   </build>
0098 </project>