pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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>guanshi</artifactId>
  7. <groupId>com.guanshi</groupId>
  8. <version>4.7.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>guanshi-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. <version>5.1.47</version>
  44. </dependency>
  45. <!-- 核心模块-->
  46. <dependency>
  47. <groupId>com.guanshi</groupId>
  48. <artifactId>guanshi-framework</artifactId>
  49. </dependency>
  50. <!-- 定时任务-->
  51. <dependency>
  52. <groupId>com.guanshi</groupId>
  53. <artifactId>guanshi-quartz</artifactId>
  54. </dependency>
  55. <!-- 代码生成-->
  56. <dependency>
  57. <groupId>com.guanshi</groupId>
  58. <artifactId>guanshi-generator</artifactId>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-maven-plugin</artifactId>
  66. <version>2.1.1.RELEASE</version>
  67. <configuration>
  68. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  69. </configuration>
  70. <executions>
  71. <execution>
  72. <goals>
  73. <goal>repackage</goal>
  74. </goals>
  75. </execution>
  76. </executions>
  77. </plugin>
  78. <plugin>
  79. <groupId>org.apache.maven.plugins</groupId>
  80. <artifactId>maven-war-plugin</artifactId>
  81. <version>3.0.0</version>
  82. <configuration>
  83. <failOnMissingWebXml>false</failOnMissingWebXml>
  84. <warName>${project.artifactId}</warName>
  85. </configuration>
  86. </plugin>
  87. <!-- YUI Compressor (CSS/JS压缩)
  88. <plugin>
  89. <groupId>net.alchim31.maven</groupId>
  90. <artifactId>yuicompressor-maven-plugin</artifactId>
  91. <version>1.5.1</version>
  92. <executions>
  93. <execution>
  94. <phase>prepare-package</phase>
  95. <goals>
  96. <goal>compress</goal>
  97. </goals>
  98. </execution>
  99. </executions>
  100. <configuration>
  101. <encoding>UTF-8</encoding>
  102. <jswarn>false</jswarn>
  103. <nosuffix>true</nosuffix>
  104. <linebreakpos>50000</linebreakpos>
  105. <sourceDirectory>src/main/resources/static</sourceDirectory>
  106. <force>true</force>
  107. <includes>
  108. <include>**/*.js</include>
  109. <include>**/*.css</include>
  110. </includes>
  111. <excludes>
  112. <exclude>**/*.min.js</exclude>
  113. <exclude>**/*.min.css</exclude>
  114. <exclude>**/fileinput.js</exclude>
  115. <exclude>**/bootstrap-table/**</exclude>
  116. </excludes>
  117. </configuration>
  118. </plugin> -->
  119. </plugins>
  120. <finalName>${project.artifactId}</finalName>
  121. </build>
  122. </project>