lance-spark
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.lancedb</groupId> <artifactId>lance-spark</artifactId> <version>0.26.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <parent> <artifactId>lance-parent</artifactId> <groupId>com.lancedb</groupId> <version>0.26.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>lance-spark</artifactId> <name>Lance Spark Connector</name> <build> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>scala-compile-first</id> <phase>process-resources</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>scala-test-compile</id> <phase>process-test-resources</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> <configuration> <args> <arg>-feature</arg> </args> </configuration> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.6.1</version> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/jars</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>false</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> <includeArtifactIds>lance-core,arrow-c-data,jar-jni,arrow-dataset</includeArtifactIds> </configuration> </execution> <execution> <id>copy-self</id> <phase>package</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>${project.artifactId}</artifactId> <version>${project.version}</version> <type>jar</type> <outputDirectory>${project.build.directory}/jars</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>scala-2.13</id> <properties> <scala.compat.version>2.13</scala.compat.version> <scala.version>2.13.3</scala.version> </properties> </profile> <profile> <id>shade-jar</id> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <id>uber-jar</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <finalName>${project.artifactId}-${scala.compat.version}-${project.version}-jar-with-dependencies</finalName> <transformers> <transformer /> <transformer /> <transformer /> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>LICENSE</exclude> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-sql_2.12</artifactId> <version>3.5.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.10.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.12</artifactId> <version>3.2.10</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>scalatest-core_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-featurespec_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-flatspec_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-freespec_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-funsuite_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-funspec_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-propspec_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-refspec_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-wordspec_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-diagrams_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-matchers-core_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-shouldmatchers_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> <exclusion> <artifactId>scalatest-mustmatchers_2.12</artifactId> <groupId>org.scalatest</groupId> </exclusion> </exclusions> </dependency> </dependencies> <properties> <scala.compat.version>2.12</scala.compat.version> <scala.version>2.12.19</scala.version> <spark.version>3.5.1</spark.version> </properties> </project>