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-mllib-local_2.12</artifactId>
0029   <properties>
0030     <sbt.project.name>mllib-local</sbt.project.name>
0031   </properties>
0032   <packaging>jar</packaging>
0033   <name>Spark Project ML Local Library</name>
0034   <url>http://spark.apache.org/</url>
0035 
0036   <dependencies>
0037     <dependency>
0038       <groupId>org.scalanlp</groupId>
0039       <artifactId>breeze_${scala.binary.version}</artifactId>
0040     </dependency>
0041     <dependency>
0042       <groupId>org.apache.commons</groupId>
0043       <artifactId>commons-math3</artifactId>
0044     </dependency>
0045     <dependency>
0046       <groupId>org.scalacheck</groupId>
0047       <artifactId>scalacheck_${scala.binary.version}</artifactId>
0048       <scope>test</scope>
0049     </dependency>
0050     <dependency>
0051       <groupId>org.mockito</groupId>
0052       <artifactId>mockito-core</artifactId>
0053       <scope>test</scope>
0054     </dependency>
0055     <dependency>
0056       <groupId>org.apache.spark</groupId>
0057       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0058     </dependency>
0059 
0060     <!--
0061       This spark-tags test-dep is needed even though it isn't used in this module, otherwise testing-cmds that exclude
0062       them will yield errors.
0063     -->
0064     <dependency>
0065       <groupId>org.apache.spark</groupId>
0066       <artifactId>spark-tags_${scala.binary.version}</artifactId>
0067       <type>test-jar</type>
0068       <scope>test</scope>
0069     </dependency>
0070 
0071   </dependencies>
0072   <profiles>
0073     <profile>
0074       <id>netlib-lgpl</id>
0075       <dependencies>
0076         <dependency>
0077           <groupId>com.github.fommil.netlib</groupId>
0078           <artifactId>all</artifactId>
0079           <version>${netlib.java.version}</version>
0080           <type>pom</type>
0081         </dependency>
0082       </dependencies>
0083     </profile>
0084   </profiles>
0085   <build>
0086     <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
0087     <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
0088   </build>
0089 </project>