datacap/plugin/datacap-jdbc-dremio/pom.xml

69 lines
2.4 KiB
XML
Raw Normal View History

2022-10-22 14:51:26 +08:00
<?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/xsd/maven-4.0.0.xsd">
<parent>
2023-03-01 01:14:42 +08:00
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
2023-12-24 10:04:18 +08:00
<version>2024.01.1-SNAPSHOT</version>
2023-03-01 01:14:42 +08:00
<relativePath>../../pom.xml</relativePath>
2022-10-22 14:51:26 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
2023-03-01 01:14:42 +08:00
<artifactId>datacap-jdbc-dremio</artifactId>
<description>DataCap - Dremio</description>
2022-10-22 14:51:26 +08:00
<properties>
2022-10-22 20:54:53 +08:00
<dremio.version>20.1.0-202202061055110045-36733c65</dremio.version>
2022-10-22 14:51:26 +08:00
<plugin.name>jdbc-dremio</plugin.name>
</properties>
<dependencies>
<dependency>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap-spi</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
<dependency>
2022-10-22 20:54:53 +08:00
<groupId>com.dremio.distribution</groupId>
<artifactId>dremio-jdbc-driver</artifactId>
2022-10-22 14:51:26 +08:00
<version>${dremio.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>${assembly-plugin.version}</version>
<configuration>
<finalName>${plugin.name}</finalName>
<descriptors>
<descriptor>../../configure/assembly/plugin.xml</descriptor>
2022-10-22 14:51:26 +08:00
</descriptors>
<outputDirectory>../../dist/plugins</outputDirectory>
2022-10-22 14:51:26 +08:00
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
2022-10-22 20:54:53 +08:00
<repositories>
<repository>
<id>dremio-free</id>
<url>https://maven.dremio.com/free/</url>
</repository>
</repositories>
2022-10-22 14:51:26 +08:00
</project>