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 <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">
0019   <modelVersion>4.0.0</modelVersion>
0020   <parent>
0021     <groupId>org.apache.spark</groupId>
0022     <artifactId>spark-parent_2.12</artifactId>
0023     <version>3.0.0</version>
0024     <relativePath>../pom.xml</relativePath>
0025   </parent>
0026 
0027   <artifactId>spark-tools_2.12</artifactId>
0028   <properties>
0029     <sbt.project.name>tools</sbt.project.name>
0030   </properties>
0031   <packaging>jar</packaging>
0032   <name>Spark Project Tools</name>
0033   <url>http://spark.apache.org/</url>
0034 
0035   <dependencies>
0036     <dependency>
0037       <groupId>org.scala-lang</groupId>
0038       <artifactId>scala-reflect</artifactId>
0039     </dependency>
0040     <dependency>
0041       <groupId>org.scala-lang</groupId>
0042       <artifactId>scala-compiler</artifactId>
0043     </dependency>
0044     <dependency>
0045       <groupId>org.clapper</groupId>
0046       <artifactId>classutil_${scala.binary.version}</artifactId>
0047       <version>1.5.1</version>
0048     </dependency>
0049   </dependencies>
0050 
0051   <build>
0052     <outputDirectory>target/scala-${scala.binary.version}/classes</outputDirectory>
0053     <testOutputDirectory>target/scala-${scala.binary.version}/test-classes</testOutputDirectory>
0054     <plugins>
0055       <plugin>
0056         <groupId>org.apache.maven.plugins</groupId>
0057         <artifactId>maven-deploy-plugin</artifactId>
0058         <configuration>
0059           <skip>true</skip>
0060         </configuration>
0061       </plugin>
0062       <plugin>
0063         <groupId>org.apache.maven.plugins</groupId>
0064         <artifactId>maven-install-plugin</artifactId>
0065         <configuration>
0066           <skip>true</skip>
0067         </configuration>
0068       </plugin>
0069       <plugin>
0070         <groupId>org.apache.maven.plugins</groupId>
0071         <artifactId>maven-source-plugin</artifactId>
0072       </plugin>
0073     </plugins>
0074   </build>
0075 </project>