2022-09-25 12:04:27 +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>
|
2024-04-11 14:30:40 +08:00
|
|
|
<version>2024.03.2-SNAPSHOT</version>
|
2023-03-01 01:14:42 +08:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
2022-09-25 12:04:27 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2023-03-01 01:14:42 +08:00
|
|
|
<artifactId>datacap-jdbc-presto</artifactId>
|
|
|
|
<description>DataCap - Presto</description>
|
2022-09-25 12:04:27 +08:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<presto.version>350</presto.version>
|
|
|
|
<plugin.name>jdbc-presto</plugin.name>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.edurt.datacap</groupId>
|
|
|
|
<artifactId>datacap-spi</artifactId>
|
2022-09-29 19:53:34 +08:00
|
|
|
<scope>provided</scope>
|
2022-09-25 12:04:27 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.prestosql</groupId>
|
|
|
|
<artifactId>presto-jdbc</artifactId>
|
|
|
|
<version>${presto.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>${assembly-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<finalName>${plugin.name}</finalName>
|
|
|
|
<descriptors>
|
2023-06-04 14:45:27 +08:00
|
|
|
<descriptor>../../configure/assembly/plugin.xml</descriptor>
|
2022-09-25 12:04:27 +08:00
|
|
|
</descriptors>
|
2023-06-04 14:45:27 +08:00
|
|
|
<outputDirectory>../../dist/plugins</outputDirectory>
|
2022-09-25 12:04:27 +08:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>make-assembly</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|