128 lines
4.5 KiB
XML
Raw Permalink Normal View History

<?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>ruoyi</artifactId>
<groupId>com.ruoyi</groupId>
2024-06-06 09:08:49 +08:00
<version>4.7.9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
2020-07-16 16:19:28 +08:00
<packaging>jar</packaging>
<artifactId>ruoyi-admin</artifactId>
2020-07-16 16:19:28 +08:00
<description>
web服务入口
</description>
<dependencies>
2020-07-16 16:19:28 +08:00
2019-03-08 14:44:38 +08:00
<!-- SpringBoot集成thymeleaf模板 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- spring-boot-devtools -->
2020-07-16 16:19:28 +08:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 表示依赖不会传递 -->
</dependency>
2024-06-27 23:39:00 +08:00
<!-- spring-doc -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
</dependency>
2020-07-16 17:09:15 +08:00
<!-- Mysql驱动包 -->
2020-03-25 14:55:32 +08:00
<dependency>
2024-06-24 14:48:38 +08:00
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
2020-03-25 14:55:32 +08:00
</dependency>
2020-07-16 16:19:28 +08:00
<!-- 核心模块-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-framework</artifactId>
2019-03-08 14:44:38 +08:00
</dependency>
2020-07-16 16:19:28 +08:00
2019-03-08 14:44:38 +08:00
<!-- 定时任务-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-quartz</artifactId>
</dependency>
2020-07-16 16:19:28 +08:00
2019-03-08 14:44:38 +08:00
<!-- 代码生成-->
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-generator</artifactId>
</dependency>
2020-07-16 16:19:28 +08:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2023-08-12 16:20:33 +08:00
<version>2.5.15</version>
<configuration>
2020-07-16 16:19:28 +08:00
<fork>true</fork> <!-- 如果没有该配置devtools不会生效 -->
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
2018-10-26 13:01:30 +08:00
<plugin>
2018-10-26 13:29:07 +08:00
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
2024-06-24 14:48:38 +08:00
<version>3.1.0</version>
2018-10-26 13:29:07 +08:00
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
2019-11-06 17:04:25 +08:00
<warName>${project.artifactId}</warName>
2018-10-26 13:29:07 +08:00
</configuration>
</plugin>
<!-- YUI Compressor (CSS/JS压缩)
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>yuicompressor-maven-plugin</artifactId>
<version>1.5.1</version>
<executions>
<execution>
<phase>prepare-package</phase>
<goals>
<goal>compress</goal>
</goals>
</execution>
</executions>
<configuration>
<encoding>UTF-8</encoding>
<jswarn>false</jswarn>
<nosuffix>true</nosuffix>
<linebreakpos>50000</linebreakpos>
<sourceDirectory>src/main/resources/static</sourceDirectory>
<force>true</force>
<includes>
<include>**/*.js</include>
<include>**/*.css</include>
</includes>
<excludes>
<exclude>**/*.min.js</exclude>
<exclude>**/*.min.css</exclude>
<exclude>**/fileinput.js</exclude>
2024-06-05 11:53:53 +08:00
<exclude>**/validate/**</exclude>
<exclude>**/bootstrap-table/**</exclude>
</excludes>
</configuration>
</plugin> -->
</plugins>
2019-11-06 17:04:25 +08:00
<finalName>${project.artifactId}</finalName>
</build>
2020-07-16 16:19:28 +08:00
2018-10-07 14:16:47 +08:00
</project>