pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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>4.7.8</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>ruoyi-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- SpringBoot集成thymeleaf模板 -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  21. </dependency>
  22. <!-- spring-boot-devtools -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-devtools</artifactId>
  26. <optional>true</optional> <!-- 表示依赖不会传递 -->
  27. </dependency>
  28. <!-- swagger3-->
  29. <dependency>
  30. <groupId>io.springfox</groupId>
  31. <artifactId>springfox-boot-starter</artifactId>
  32. </dependency>
  33. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  34. <dependency>
  35. <groupId>io.swagger</groupId>
  36. <artifactId>swagger-models</artifactId>
  37. <version>1.6.2</version>
  38. </dependency>
  39. <!-- Mysql驱动包 -->
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <!-- 核心模块-->
  45. <dependency>
  46. <groupId>com.ruoyi</groupId>
  47. <artifactId>ruoyi-framework</artifactId>
  48. </dependency>
  49. <!-- 定时任务-->
  50. <dependency>
  51. <groupId>com.ruoyi</groupId>
  52. <artifactId>ruoyi-quartz</artifactId>
  53. </dependency>
  54. <!-- 代码生成-->
  55. <dependency>
  56. <groupId>com.ruoyi</groupId>
  57. <artifactId>ruoyi-generator</artifactId>
  58. </dependency>
  59. </dependencies>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. <version>2.5.15</version>
  66. <configuration>
  67. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  68. </configuration>
  69. <executions>
  70. <execution>
  71. <goals>
  72. <goal>repackage</goal>
  73. </goals>
  74. </execution>
  75. </executions>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <artifactId>maven-war-plugin</artifactId>
  80. <version>3.0.0</version>
  81. <configuration>
  82. <failOnMissingWebXml>false</failOnMissingWebXml>
  83. <warName>${project.artifactId}</warName>
  84. </configuration>
  85. </plugin>
  86. <!-- YUI Compressor (CSS/JS压缩)
  87. <plugin>
  88. <groupId>net.alchim31.maven</groupId>
  89. <artifactId>yuicompressor-maven-plugin</artifactId>
  90. <version>1.5.1</version>
  91. <executions>
  92. <execution>
  93. <phase>prepare-package</phase>
  94. <goals>
  95. <goal>compress</goal>
  96. </goals>
  97. </execution>
  98. </executions>
  99. <configuration>
  100. <encoding>UTF-8</encoding>
  101. <jswarn>false</jswarn>
  102. <nosuffix>true</nosuffix>
  103. <linebreakpos>50000</linebreakpos>
  104. <sourceDirectory>src/main/resources/static</sourceDirectory>
  105. <force>true</force>
  106. <includes>
  107. <include>**/*.js</include>
  108. <include>**/*.css</include>
  109. </includes>
  110. <excludes>
  111. <exclude>**/*.min.js</exclude>
  112. <exclude>**/*.min.css</exclude>
  113. <exclude>**/fileinput.js</exclude>
  114. <exclude>**/bootstrap-table/**</exclude>
  115. </excludes>
  116. </configuration>
  117. </plugin> -->
  118. </plugins>
  119. <finalName>${project.artifactId}</finalName>
  120. </build>
  121. </project>