Files
cid/honeycom-third/honeycom-third-biz/pom.xml
2025-11-11 19:51:56 +08:00

154 lines
5.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>honeycom-third</artifactId>
<groupId>com.honeycombis</groupId>
<version>5.4.0</version>
</parent>
<artifactId>honeycom-third-biz</artifactId>
<name>honeycom-third-biz</name>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!--必备: undertow容器-->
<dependency>
<artifactId>spring-boot-starter-undertow</artifactId>
<groupId>org.springframework.boot</groupId>
</dependency>
<!--必备: spring boot web-->
<dependency>
<artifactId>spring-boot-starter-web</artifactId>
<groupId>org.springframework.boot</groupId>
</dependency>
<!--必备: 注册中心客户端-->
<dependency>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
<groupId>com.alibaba.cloud</groupId>
</dependency>
<!--必备: 配置中心客户端-->
<dependency>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
<groupId>com.alibaba.cloud</groupId>
</dependency>
<!--必备: feign 依赖-->
<dependency>
<artifactId>honeycom-common-feign</artifactId>
<groupId>com.honeycombis</groupId>
</dependency>
<!--必备: log 依赖-->
<dependency>
<artifactId>honeycom-common-log</artifactId>
<groupId>com.honeycombis</groupId>
</dependency>
<!--必备pigx安全模块-->
<dependency>
<artifactId>honeycom-common-security</artifactId>
<groupId>com.honeycombis</groupId>
</dependency>
<!--选配: mybatis 依赖 -->
<dependency>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<groupId>com.baomidou</groupId>
</dependency>
<!--选配: swagger文档-->
<dependency>
<artifactId>honeycom-common-swagger</artifactId>
<groupId>com.honeycombis</groupId>
</dependency>
<dependency>
<artifactId>honeycom-common-data</artifactId>
<groupId>com.honeycombis</groupId>
</dependency>
<dependency>
<artifactId>honeycom-third-api</artifactId>
<groupId>com.honeycombis</groupId>
<scope>compile</scope>
<version>5.4.0</version>
</dependency>
<!-- 多数据源 -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>dynamic-datasource-spring-boot3-starter</artifactId>
<version>4.3.0</version>
<exclusions>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- MySQL驱动 -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!-- druid 连接池 -->
<dependency>
<artifactId>druid-spring-boot-3-starter</artifactId>
<groupId>com.alibaba</groupId>
</dependency>
<!-- SQL Server驱动 -->
<dependency>
<artifactId>mssql-jdbc</artifactId>
<groupId>com.microsoft.sqlserver</groupId>
</dependency>
<dependency>
<groupId>com.honeycombis</groupId>
<artifactId>honeycom-mold-api</artifactId>
</dependency>
<dependency>
<groupId>com.honeycombis</groupId>
<artifactId>honeycom-pm-api</artifactId>
<version>5.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.honeycombis</groupId>
<artifactId>honeycom-step-api</artifactId>
<version>5.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sap</groupId> <!-- 自定义groupId -->
<artifactId>sapjco3</artifactId> <!-- 自定义artifactId -->
<version>3.0.17</version> <!-- 自定义版本号 -->
<scope>system</scope>
<systemPath>${basedir}/lib/sap/sapjco3.jar</systemPath>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>lib/sap</directory>
<targetPath>BOOT-INF/lib/</targetPath>
<includes>
<include>sapjco3.jar</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering> <!-- 新增这行,开启过滤 -->
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>