| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| |
| <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"> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <groupId>org.apache.datafusion</groupId> |
| <artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>comet-common-spark${spark.version.short}_${scala.binary.version}</artifactId> |
| <name>comet-common</name> |
| |
| <!-- |
| Minimal bootstrap module. Contains only the exception classes that the |
| Rust JNI bridge needs to load via JNI (CometNativeException and friends). |
| Kept small on purpose so `mvn compile -pl common` is a cheap prerequisite |
| for `cargo test` in the Rust workspace. All other JVM code lives in |
| comet-spark. |
| --> |
| |
| <properties> |
| <!-- Reverse default (skip installation), and then enable only for child modules --> |
| <maven.deploy.skip>false</maven.deploy.skip> |
| </properties> |
| |
| <build> |
| <plugins> |
| <!-- scala-maven-plugin handles javac too: the parent pom's |
| maven-compiler-plugin is configured with skipMain=true. --> |
| <plugin> |
| <groupId>net.alchim31.maven</groupId> |
| <artifactId>scala-maven-plugin</artifactId> |
| </plugin> |
| <!-- This module has no Scala sources; skip scalafix so the lint job |
| does not fail with "No files to fix". --> |
| <plugin> |
| <groupId>io.github.evis</groupId> |
| <artifactId>scalafix-maven-plugin_${scala.binary.version}</artifactId> |
| <version>${scalafix-maven-plugin.version}</version> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| </project> |