86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <parent> |
| 6 | <artifactId>ruoyi</artifactId> |
| 7 | <groupId>com.ruoyi</groupId> |
| 8 | <version>3.8.8</version> |
| 9 | </parent> |
| 10 | <modelVersion>4.0.0</modelVersion> |
| 11 | <packaging>jar</packaging> |
| 12 | <artifactId>ruoyi-admin</artifactId> |
| 13 | |
| 14 | <description> |
| 15 | web服务入口 |
| 16 | </description> |
| 17 | |
| 18 | <dependencies> |
| 19 | |
86133 | 2d0a179 | 2025-04-21 20:45:00 +0800 | [diff] [blame] | 20 | <dependency> |
| 21 | <groupId>com.fasterxml.jackson.core</groupId> |
| 22 | <artifactId>jackson-databind</artifactId> |
| 23 | </dependency> |
| 24 | |
| 25 | |
| 26 | |
| 27 | |
| 28 | |
| 29 | |
86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame] | 30 | <!-- spring-boot-devtools --> |
| 31 | <dependency> |
| 32 | <groupId>org.springframework.boot</groupId> |
| 33 | <artifactId>spring-boot-devtools</artifactId> |
| 34 | <optional>true</optional> <!-- 表示依赖不会传递 --> |
| 35 | </dependency> |
| 36 | |
86133 | 2d0a179 | 2025-04-21 20:45:00 +0800 | [diff] [blame] | 37 | |
| 38 | |
86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame] | 39 | <!-- spring-doc --> |
| 40 | <dependency> |
| 41 | <groupId>org.springdoc</groupId> |
| 42 | <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 43 | </dependency> |
| 44 | |
| 45 | <!-- Mysql驱动包 --> |
| 46 | <dependency> |
| 47 | <groupId>com.mysql</groupId> |
| 48 | <artifactId>mysql-connector-j</artifactId> |
| 49 | </dependency> |
| 50 | |
| 51 | <!-- 核心模块--> |
| 52 | <dependency> |
| 53 | <groupId>com.ruoyi</groupId> |
| 54 | <artifactId>ruoyi-framework</artifactId> |
| 55 | </dependency> |
| 56 | |
| 57 | <!-- 定时任务--> |
| 58 | <dependency> |
| 59 | <groupId>com.ruoyi</groupId> |
| 60 | <artifactId>ruoyi-quartz</artifactId> |
| 61 | </dependency> |
| 62 | |
| 63 | <!-- 代码生成--> |
| 64 | <dependency> |
| 65 | <groupId>com.ruoyi</groupId> |
| 66 | <artifactId>ruoyi-generator</artifactId> |
| 67 | </dependency> |
| 68 | |
| 69 | </dependencies> |
| 70 | |
| 71 | <build> |
| 72 | <plugins> |
| 73 | <plugin> |
| 74 | <groupId>org.springframework.boot</groupId> |
| 75 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 76 | <version>2.5.15</version> |
| 77 | <configuration> |
| 78 | <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> |
| 79 | </configuration> |
| 80 | <executions> |
| 81 | <execution> |
| 82 | <goals> |
| 83 | <goal>repackage</goal> |
| 84 | </goals> |
| 85 | </execution> |
| 86 | </executions> |
| 87 | </plugin> |
| 88 | <plugin> |
| 89 | <groupId>org.apache.maven.plugins</groupId> |
| 90 | <artifactId>maven-war-plugin</artifactId> |
| 91 | <version>3.1.0</version> |
| 92 | <configuration> |
| 93 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 94 | <warName>${project.artifactId}</warName> |
| 95 | </configuration> |
| 96 | </plugin> |
| 97 | </plugins> |
| 98 | <finalName>${project.artifactId}</finalName> |
| 99 | </build> |
| 100 | |
| 101 | </project> |