pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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>supervision</artifactId>
  7. <groupId>com.supervision</groupId>
  8. <version>3.8.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>supervision-admin</artifactId>
  13. <description>
  14. web服务入口
  15. </description>
  16. <dependencies>
  17. <!-- spring-boot-devtools -->
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-devtools</artifactId>
  21. <optional>true</optional> <!-- 表示依赖不会传递 -->
  22. </dependency>
  23. <!-- swagger3-->
  24. <dependency>
  25. <groupId>io.springfox</groupId>
  26. <artifactId>springfox-boot-starter</artifactId>
  27. </dependency>
  28. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  29. <dependency>
  30. <groupId>io.swagger</groupId>
  31. <artifactId>swagger-models</artifactId>
  32. <version>1.6.2</version>
  33. </dependency>
  34. <!-- Mysql驱动包 -->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. </dependency>
  39. <!-- 核心模块-->
  40. <dependency>
  41. <groupId>com.supervision</groupId>
  42. <artifactId>supervision-framework</artifactId>
  43. </dependency>
  44. <!-- 定时任务-->
  45. <dependency>
  46. <groupId>com.supervision</groupId>
  47. <artifactId>supervision-quartz</artifactId>
  48. </dependency>
  49. <!-- 代码生成-->
  50. <dependency>
  51. <groupId>com.supervision</groupId>
  52. <artifactId>supervision-generator</artifactId>
  53. </dependency>
  54. <!--二维码-->
  55. <dependency>
  56. <groupId>com.google.zxing</groupId>
  57. <artifactId>javase</artifactId>
  58. <version>3.3.0</version>
  59. </dependency>
  60. <!-- 生成pdf -->
  61. <dependency>
  62. <groupId>com.itextpdf</groupId>
  63. <artifactId>itextpdf</artifactId>
  64. <version>5.4.3</version>
  65. </dependency>
  66. <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
  67. <dependency>
  68. <groupId>com.itextpdf</groupId>
  69. <artifactId>itext-asian</artifactId>
  70. <version>5.2.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.lowagie</groupId>
  74. <artifactId>itext</artifactId>
  75. <version>2.1.7</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>jasperreports</groupId>
  79. <artifactId>jasperreports</artifactId>
  80. <version>2.0.1</version>
  81. <exclusions>
  82. <exclusion>
  83. <groupId>com.lowagie</groupId>
  84. <artifactId>itext</artifactId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.apache.pdfbox</groupId>
  90. <artifactId>pdfbox</artifactId>
  91. <version>2.0.25</version>
  92. </dependency>
  93. <!--DOC-->
  94. <dependency>
  95. <groupId>e-iceblue</groupId>
  96. <artifactId>spire.office.free</artifactId>
  97. <version>5.3.1</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>e-iceblue</groupId>
  101. <artifactId>spire.doc.free</artifactId>
  102. <version>5.2.0</version>
  103. </dependency>
  104. <!--sqlserver 数据库-->
  105. <dependency>
  106. <groupId>com.microsoft.sqlserver</groupId>
  107. <artifactId>sqljdbc4</artifactId>
  108. <version>4.0</version>
  109. </dependency>
  110. <!--hutool工具包-->
  111. <dependency>
  112. <groupId>cn.hutool</groupId>
  113. <artifactId>hutool-all</artifactId>
  114. <version>5.8.5</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.freemarker</groupId>
  118. <artifactId>freemarker</artifactId>
  119. <version>2.3.31</version>
  120. </dependency>
  121. </dependencies>
  122. <build>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-maven-plugin</artifactId>
  127. <version>2.1.1.RELEASE</version>
  128. <configuration>
  129. <fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
  130. </configuration>
  131. <executions>
  132. <execution>
  133. <goals>
  134. <goal>repackage</goal>
  135. </goals>
  136. </execution>
  137. </executions>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.apache.maven.plugins</groupId>
  141. <artifactId>maven-war-plugin</artifactId>
  142. <version>3.1.0</version>
  143. <configuration>
  144. <failOnMissingWebXml>false</failOnMissingWebXml>
  145. <warName>${project.artifactId}</warName>
  146. </configuration>
  147. </plugin>
  148. </plugins>
  149. <finalName>${project.artifactId}</finalName>
  150. </build>
  151. </project>