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 | |
86133 | a611b01 | 2025-06-07 22:11:57 +0800 | [diff] [blame^] | 25 | <dependency> |
| 26 | <groupId>com.aliyun.oss</groupId> |
| 27 | <artifactId>aliyun-sdk-oss</artifactId> |
| 28 | <version>3.18.2</version> |
| 29 | </dependency> |
86133 | 2d0a179 | 2025-04-21 20:45:00 +0800 | [diff] [blame] | 30 | |
| 31 | |
| 32 | |
86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame] | 33 | <!-- spring-boot-devtools --> |
| 34 | <dependency> |
| 35 | <groupId>org.springframework.boot</groupId> |
| 36 | <artifactId>spring-boot-devtools</artifactId> |
| 37 | <optional>true</optional> <!-- 表示依赖不会传递 --> |
| 38 | </dependency> |
| 39 | |
86133 | 2d0a179 | 2025-04-21 20:45:00 +0800 | [diff] [blame] | 40 | |
| 41 | |
86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame] | 42 | <!-- spring-doc --> |
| 43 | <dependency> |
| 44 | <groupId>org.springdoc</groupId> |
| 45 | <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 46 | </dependency> |
| 47 | |
| 48 | <!-- Mysql驱动包 --> |
| 49 | <dependency> |
| 50 | <groupId>com.mysql</groupId> |
| 51 | <artifactId>mysql-connector-j</artifactId> |
visionegg | 98dea66 | 2025-05-19 14:35:20 +0800 | [diff] [blame] | 52 | <version>8.2.0</version> |
86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame] | 53 | </dependency> |
| 54 | |
| 55 | <!-- 核心模块--> |
| 56 | <dependency> |
| 57 | <groupId>com.ruoyi</groupId> |
| 58 | <artifactId>ruoyi-framework</artifactId> |
| 59 | </dependency> |
| 60 | |
| 61 | <!-- 定时任务--> |
| 62 | <dependency> |
| 63 | <groupId>com.ruoyi</groupId> |
| 64 | <artifactId>ruoyi-quartz</artifactId> |
| 65 | </dependency> |
| 66 | |
| 67 | <!-- 代码生成--> |
| 68 | <dependency> |
| 69 | <groupId>com.ruoyi</groupId> |
| 70 | <artifactId>ruoyi-generator</artifactId> |
| 71 | </dependency> |
| 72 | |
visionegg | 98dea66 | 2025-05-19 14:35:20 +0800 | [diff] [blame] | 73 | <dependency> |
| 74 | <groupId>org.hibernate.validator</groupId> |
| 75 | <artifactId>hibernate-validator</artifactId> |
| 76 | </dependency> |
| 77 | |
| 78 | <dependency> |
| 79 | <groupId>org.springframework.boot</groupId> |
| 80 | <artifactId>spring-boot-starter-validation</artifactId> |
| 81 | </dependency> |
| 82 | |
| 83 | <dependency> |
| 84 | <groupId>org.projectlombok</groupId> |
| 85 | <artifactId>lombok</artifactId> |
| 86 | <scope>annotationProcessor</scope> |
| 87 | </dependency> |
| 88 | |
| 89 | |
86133 | aaa3f5d | 2025-04-20 21:33:29 +0800 | [diff] [blame] | 90 | </dependencies> |
| 91 | |
| 92 | <build> |
| 93 | <plugins> |
| 94 | <plugin> |
| 95 | <groupId>org.springframework.boot</groupId> |
| 96 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 97 | <version>2.5.15</version> |
| 98 | <configuration> |
| 99 | <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 --> |
| 100 | </configuration> |
| 101 | <executions> |
| 102 | <execution> |
| 103 | <goals> |
| 104 | <goal>repackage</goal> |
| 105 | </goals> |
| 106 | </execution> |
| 107 | </executions> |
| 108 | </plugin> |
| 109 | <plugin> |
| 110 | <groupId>org.apache.maven.plugins</groupId> |
| 111 | <artifactId>maven-war-plugin</artifactId> |
| 112 | <version>3.1.0</version> |
| 113 | <configuration> |
| 114 | <failOnMissingWebXml>false</failOnMissingWebXml> |
| 115 | <warName>${project.artifactId}</warName> |
| 116 | </configuration> |
| 117 | </plugin> |
| 118 | </plugins> |
| 119 | <finalName>${project.artifactId}</finalName> |
| 120 | </build> |
| 121 | |
| 122 | </project> |