134 lines
3.7 KiB
XML
134 lines
3.7 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>2.7.15</version>
|
||
<relativePath/>
|
||
</parent>
|
||
<groupId>com.mystarvindata</groupId>
|
||
<artifactId>vindata</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<name>vindata</name>
|
||
<description>微软云 + WeData 对接项目</description>
|
||
|
||
<!-- 🔥 添加Databricks官方仓库(解决驱动下载不到) -->
|
||
<repositories>
|
||
<!-- 🔥 Maven中央仓库(必须加!下载腾讯云/所有公共依赖) -->
|
||
<repository>
|
||
<id>central</id>
|
||
<name>Maven Central</name>
|
||
<url>https://repo1.maven.org/maven2</url>
|
||
<snapshots>
|
||
<enabled>false</enabled>
|
||
</snapshots>
|
||
</repository>
|
||
<!-- Databricks仓库(保留,你的驱动需要用) -->
|
||
<repository>
|
||
<id>databricks</id>
|
||
<url>https://maven.databricks.com/repo/public</url>
|
||
</repository>
|
||
</repositories>
|
||
|
||
<properties>
|
||
<java.version>17</java.version>
|
||
<azure.version>1.14.0</azure.version>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.azure</groupId>
|
||
<artifactId>azure-identity</artifactId>
|
||
<version>${azure.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.azure</groupId>
|
||
<artifactId>azure-core</artifactId>
|
||
<version>${azure.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>5.8.31</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.databricks</groupId>
|
||
<artifactId>databricks-jdbc</artifactId>
|
||
<version>2.6.25</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.tencentcloudapi</groupId>
|
||
<artifactId>tencentcloud-sdk-java-wedata</artifactId>
|
||
<version>3.1.1452</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.tencentcloudapi</groupId>
|
||
<artifactId>tencentcloud-sdk-java</artifactId> <!-- 全产品SDK -->
|
||
<version>3.1.1439</version>
|
||
</dependency>
|
||
|
||
<!-- 腾讯云 DLC SDK -->
|
||
<dependency>
|
||
<groupId>com.tencentcloudapi</groupId>
|
||
<artifactId>tencentcloud-sdk-java-dlc</artifactId>
|
||
<!-- 请检查并使用最新版本,目前常见版本为 3.1.x 或更高 -->
|
||
<version>3.1.1439</version>
|
||
</dependency>
|
||
|
||
<!-- <!– 核心库 (通常也需要) –>-->
|
||
<dependency>
|
||
<groupId>com.tencentcloudapi</groupId>
|
||
<artifactId>tencentcloud-sdk-java-common</artifactId>
|
||
<version>3.1.1452</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.11.0</version>
|
||
<configuration>
|
||
<source>17</source>
|
||
<target>17</target>
|
||
<encoding>UTF-8</encoding>
|
||
</configuration>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<configuration>
|
||
<excludes>
|
||
<exclude>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
</exclude>
|
||
</excludes>
|
||
</configuration>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project> |