datacap/plugin/datacap-jdbc-kyuubi/pom.xml
dependabot[bot] 193350ead8
Bump kyuubi-hive-jdbc-shaded from 1.6.0-incubating to 1.7.1
Bumps [kyuubi-hive-jdbc-shaded](https://github.com/apache/kyuubi) from 1.6.0-incubating to 1.7.1.
- [Release notes](https://github.com/apache/kyuubi/releases)
- [Commits](https://github.com/apache/kyuubi/compare/v1.6.0-incubating...v1.7.1)

---
updated-dependencies:
- dependency-name: org.apache.kyuubi:kyuubi-hive-jdbc-shaded
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-05-08 14:05:34 +00:00

62 lines
2.2 KiB
XML

<?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>
<artifactId>datacap</artifactId>
<groupId>io.edurt.datacap</groupId>
<version>1.10.0-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>datacap-jdbc-kyuubi</artifactId>
<description>DataCap - Apache Kyuubi</description>
<properties>
<kyuubi-jdbc.version>1.7.1</kyuubi-jdbc.version>
<plugin.name>jdbc-kyuubi</plugin.name>
</properties>
<dependencies>
<dependency>
<groupId>io.edurt.datacap</groupId>
<artifactId>datacap-spi</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.kyuubi</groupId>
<artifactId>kyuubi-hive-jdbc-shaded</artifactId>
<version>${kyuubi-jdbc.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>
<descriptor>../../configure/assembly/assembly-plugin.xml</descriptor>
</descriptors>
<outputDirectory>../../dist/plugins/${plugin.name}</outputDirectory>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>