wms-ruoyi/ruoyi-admin-wms/pom.xml

112 lines
3.7 KiB
XML
Raw Normal View History

2022-11-06 12:11:47 +08: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>
2024-06-28 14:47:32 +08:00
<artifactId>ruoyi-wms</artifactId>
2022-11-06 12:11:47 +08:00
<groupId>com.ruoyi</groupId>
2024-06-28 11:16:00 +08:00
<version>${revision}</version>
2022-11-06 12:11:47 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>ruoyi-admin-wms</artifactId>
2022-11-06 12:11:47 +08:00
<description>
web服务入口
</description>
<dependencies>
2024-06-28 11:16:00 +08:00
<!-- spring-boot-devtools -->
<dependency>
2022-11-06 12:11:47 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
2024-06-28 11:16:00 +08:00
<optional>true</optional> <!-- 表示依赖不会传递 -->
</dependency>
2022-11-06 12:11:47 +08:00
2024-06-28 11:16:00 +08:00
<!-- Mysql驱动包 -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
</dependency>
2022-11-06 12:11:47 +08:00
<dependency>
2024-06-28 11:16:00 +08:00
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-system</artifactId>
2022-11-06 12:11:47 +08:00
</dependency>
<dependency>
2024-06-28 11:16:00 +08:00
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-common-oss</artifactId>
2022-11-06 12:11:47 +08:00
</dependency>
<dependency>
<groupId>com.ruoyi</groupId>
2024-06-28 11:16:00 +08:00
<artifactId>ruoyi-common-mail</artifactId>
2022-11-06 12:11:47 +08:00
</dependency>
<dependency>
<groupId>com.ruoyi</groupId>
2024-06-28 11:16:00 +08:00
<artifactId>ruoyi-common-ratelimiter</artifactId>
2022-11-06 12:11:47 +08:00
</dependency>
<!-- 代码生成-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-generator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2024-06-28 11:16:00 +08:00
<!-- skywalking 整合 logback -->
<!-- <dependency>-->
<!-- <groupId>org.apache.skywalking</groupId>-->
<!-- <artifactId>apm-toolkit-logback-1.x</artifactId>-->
<!-- <version>${与你的agent探针版本保持一致}</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>org.apache.skywalking</groupId>-->
<!-- <artifactId>apm-toolkit-trace</artifactId>-->
<!-- <version>${与你的agent探针版本保持一致}</version>-->
<!-- </dependency>-->
2022-11-06 12:11:47 +08:00
</dependencies>
<build>
2024-06-28 11:16:00 +08:00
<finalName>${project.artifactId}</finalName>
2022-11-06 12:11:47 +08:00
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2024-06-28 11:16:00 +08:00
<version>${spring-boot.version}</version>
2022-11-06 12:11:47 +08:00
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
2024-06-28 11:16:00 +08:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>${maven-war-plugin.version}</version>
2022-11-06 12:11:47 +08:00
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warName>${project.artifactId}</warName>
2024-06-28 11:16:00 +08:00
</configuration>
</plugin>
2022-11-06 12:11:47 +08:00
</plugins>
</build>
</project>