2025-10-05 16:36:05 +08:00

111 lines
3.5 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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.storm</groupId>
<artifactId>storm</artifactId>
<version>3.6.6</version>
</parent>
<artifactId>storm-afterSales</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>storm-afterSales</name>
<description>storm-afterSales工单管理</description>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- SpringCloud Alibaba Nacos -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
<version>2.2.6.RELEASE</version>
</dependency>
<!-- SpringCloud Alibaba Nacos Config -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
<version>2.2.6.RELEASE</version>
</dependency>
<!-- SpringCloud Alibaba Sentinel -->
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
</dependency>
<!-- storm Common -->
<dependency>
<groupId>com.storm</groupId>
<artifactId>storm-common-security</artifactId>
</dependency>
<dependency>
<groupId>com.storm</groupId>
<artifactId>storm-common-redis</artifactId>
</dependency>
<dependency>
<groupId>com.storm</groupId>
<artifactId>storm-common-datascope</artifactId>
</dependency>
<dependency>
<groupId>com.storm</groupId>
<artifactId>storm-api-system</artifactId>
</dependency>
<!-- Mysql Connector -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
<!-- storm Common Log -->
<dependency>
<groupId>com.storm</groupId>
<artifactId>storm-common-log</artifactId>
</dependency>
<!-- storm Common Swagger -->
<dependency>
<groupId>com.storm</groupId>
<artifactId>storm-common-swagger</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>com.storm</groupId>
<artifactId>storm-common-oss</artifactId>
<version>3.6.6</version>
</dependency>
</dependencies>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>