|
| 1 | +<!-- |
| 2 | + ~ Licensed to the Apache Software Foundation (ASF) under one |
| 3 | + ~ or more contributor license agreements. See the NOTICE file |
| 4 | + ~ distributed with this work for additional information |
| 5 | + ~ regarding copyright ownership. The ASF licenses this file |
| 6 | + ~ to you under the Apache License, Version 2.0 (the |
| 7 | + ~ "License"); you may not use this file except in compliance |
| 8 | + ~ with the License. You may obtain a copy of the License at |
| 9 | + ~ |
| 10 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + ~ |
| 12 | + ~ Unless required by applicable law or agreed to in writing, |
| 13 | + ~ software distributed under the License is distributed on an |
| 14 | + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | + ~ KIND, either express or implied. See the License for the |
| 16 | + ~ specific language governing permissions and limitations |
| 17 | + ~ under the License. |
| 18 | + --> |
| 19 | + |
| 20 | +<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"> |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + <parent> |
| 23 | + <groupId>org.apache.sedona</groupId> |
| 24 | + <artifactId>sedona-spark-parent-${spark.compat.version}_${scala.compat.version}</artifactId> |
| 25 | + <version>1.7.1-SNAPSHOT</version> |
| 26 | + <relativePath>../pom.xml</relativePath> |
| 27 | + </parent> |
| 28 | + <artifactId>sedona-spark-iceberg-${spark.compat.version}_${scala.compat.version}</artifactId> |
| 29 | + |
| 30 | + <name>${project.groupId}:${project.artifactId}</name> |
| 31 | + <description>A cluster computing system for processing large-scale spatial data: Iceberg Spark Support.</description> |
| 32 | + <url>https://sedona.apache.org/</url> |
| 33 | + <packaging>jar</packaging> |
| 34 | + |
| 35 | + <properties> |
| 36 | + <maven.deploy.skip>false</maven.deploy.skip> |
| 37 | + </properties> |
| 38 | + |
| 39 | + <dependencies> |
| 40 | + <dependency> |
| 41 | + <groupId>org.apache.sedona</groupId> |
| 42 | + <artifactId>sedona-common</artifactId> |
| 43 | + <version>${project.version}</version> |
| 44 | + <scope>provided</scope> |
| 45 | + <exclusions> |
| 46 | + <exclusion> |
| 47 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 48 | + <artifactId>*</artifactId> |
| 49 | + </exclusion> |
| 50 | + </exclusions> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>org.apache.sedona</groupId> |
| 54 | + <artifactId>sedona-spark-common-${spark.compat.version}_${scala.compat.version}</artifactId> |
| 55 | + <version>${project.version}</version> |
| 56 | + <scope>provided</scope> |
| 57 | + </dependency> |
| 58 | + <dependency> |
| 59 | + <groupId>org.apache.spark</groupId> |
| 60 | + <artifactId>spark-core_${scala.compat.version}</artifactId> |
| 61 | + </dependency> |
| 62 | + <dependency> |
| 63 | + <groupId>org.apache.spark</groupId> |
| 64 | + <artifactId>spark-sql_${scala.compat.version}</artifactId> |
| 65 | + </dependency> |
| 66 | + <dependency> |
| 67 | + <groupId>org.apache.iceberg</groupId> |
| 68 | + <artifactId>iceberg-spark-runtime-${spark.compat.version}_${scala.compat.version}</artifactId> |
| 69 | + <version>${iceberg.version}</version> |
| 70 | + <scope>provided</scope> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>org.locationtech.jts</groupId> |
| 74 | + <artifactId>jts-core</artifactId> |
| 75 | + <scope>provided</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.scala-lang</groupId> |
| 79 | + <artifactId>scala-library</artifactId> |
| 80 | + <scope>provided</scope> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>org.scala-lang.modules</groupId> |
| 84 | + <artifactId>scala-collection-compat_${scala.compat.version}</artifactId> |
| 85 | + <scope>provided</scope> |
| 86 | + </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.scalatest</groupId> |
| 89 | + <artifactId>scalatest_${scala.compat.version}</artifactId> |
| 90 | + </dependency> |
| 91 | + </dependencies> |
| 92 | + <build> |
| 93 | + <sourceDirectory>src/main/scala</sourceDirectory> |
| 94 | + <plugins> |
| 95 | + <plugin> |
| 96 | + <groupId>net.alchim31.maven</groupId> |
| 97 | + <artifactId>scala-maven-plugin</artifactId> |
| 98 | + <executions> |
| 99 | + <execution> |
| 100 | + <id>attach-javadocs</id> |
| 101 | + <configuration> |
| 102 | + <skip>true</skip> |
| 103 | + </configuration> |
| 104 | + </execution> |
| 105 | + </executions> |
| 106 | + </plugin> |
| 107 | + <plugin> |
| 108 | + <groupId>org.scalatest</groupId> |
| 109 | + <artifactId>scalatest-maven-plugin</artifactId> |
| 110 | + </plugin> |
| 111 | + <plugin> |
| 112 | + <groupId>org.scalastyle</groupId> |
| 113 | + <artifactId>scalastyle-maven-plugin</artifactId> |
| 114 | + </plugin> |
| 115 | + </plugins> |
| 116 | + </build> |
| 117 | +</project> |
0 commit comments