| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed 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.gluten</groupId> |
| <artifactId>gluten-parent</artifactId> |
| <version>1.7.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>spark-sql-columnar-shims</artifactId> |
| <packaging>pom</packaging> |
| <name>Gluten Shims</name> |
| |
| <modules> |
| <module>common</module> |
| </modules> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.scalatest</groupId> |
| <artifactId>scalatest_${scala.binary.version}</artifactId> |
| <version>3.2.16</version> |
| <scope>test</scope> |
| </dependency> |
| <!--The parent POM excluded these jars. Add back for testing--> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-log4j12</artifactId> |
| <version>1.7.30</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.hadoop</groupId> |
| <artifactId>hadoop-client</artifactId> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.scalastyle</groupId> |
| <artifactId>scalastyle-maven-plugin</artifactId> |
| </plugin> |
| <plugin> |
| <groupId>com.diffplug.spotless</groupId> |
| <artifactId>spotless-maven-plugin</artifactId> |
| <version>${spotless.version}</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| <profiles> |
| <profile> |
| <id>spark-3.3</id> |
| <modules> |
| <module>spark33</module> |
| </modules> |
| </profile> |
| <profile> |
| <id>spark-3.4</id> |
| <modules> |
| <module>spark34</module> |
| </modules> |
| </profile> |
| <profile> |
| <id>spark-3.5</id> |
| <modules> |
| <module>spark35</module> |
| </modules> |
| </profile> |
| <profile> |
| <id>spark-4.0</id> |
| <modules> |
| <module>spark40</module> |
| </modules> |
| </profile> |
| <profile> |
| <id>spark-4.1</id> |
| <modules> |
| <module>spark41</module> |
| </modules> |
| </profile> |
| <profile> |
| <id>default</id> |
| <activation> |
| <activeByDefault>true</activeByDefault> |
| </activation> |
| <modules> |
| <module>spark35</module> |
| </modules> |
| </profile> |
| </profiles> |
| </project> |