2025-12-30 03:14:25 +00: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>
|
|
|
|
|
<artifactId>tacit-parent</artifactId>
|
|
|
|
|
<groupId>com.tacit</groupId>
|
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>tacit-app-api</artifactId>
|
|
|
|
|
<name>Tacit App API</name>
|
|
|
|
|
<description>App API Service for Tacit Microservices</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- Spring Boot -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
</dependency>
|
2026-01-06 06:51:08 +00:00
|
|
|
<!-- Spring Cloud Alibaba Nacos Config -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
|
|
</dependency>
|
2025-12-30 03:14:25 +00:00
|
|
|
<!-- Spring Cloud -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-loadbalancer</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- MyBatis Plus -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Database -->
|
2026-01-06 03:08:46 +00:00
|
|
|
<!-- <dependency>
|
2025-12-30 03:14:25 +00:00
|
|
|
<groupId>com.oceanbase</groupId>
|
|
|
|
|
<artifactId>oceanbase-client</artifactId>
|
|
|
|
|
<version>2.4.0</version>
|
2026-01-06 03:08:46 +00:00
|
|
|
</dependency> -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2026-01-13 00:59:56 +00:00
|
|
|
<version>${mysql.version}</version>
|
2025-12-30 03:14:25 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Swagger -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2026-01-04 07:50:35 +00:00
|
|
|
<!-- Common Modules -->
|
2025-12-30 03:14:25 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.tacit</groupId>
|
2026-01-04 07:50:35 +00:00
|
|
|
<artifactId>common-model</artifactId>
|
2025-12-30 03:14:25 +00:00
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2026-01-04 07:50:35 +00:00
|
|
|
<groupId>com.tacit</groupId>
|
|
|
|
|
<artifactId>common-feign</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
2025-12-30 03:14:25 +00:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2026-01-04 07:50:35 +00:00
|
|
|
<groupId>com.tacit</groupId>
|
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
2025-12-30 03:14:25 +00:00
|
|
|
</dependency>
|
2026-01-04 07:50:35 +00:00
|
|
|
|
2026-01-06 00:38:26 +00:00
|
|
|
<!-- Testing -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2026-01-08 08:13:36 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.tacit</groupId>
|
|
|
|
|
<artifactId>common-redis</artifactId>
|
2026-01-13 00:59:56 +00:00
|
|
|
<version>${project.parent.version}</version>
|
2026-01-08 08:13:36 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
2026-01-06 06:51:08 +00:00
|
|
|
|
2025-12-30 03:14:25 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skip>false</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|