pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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>intelligent-factory</artifactId>
  7. <groupId>com.jihengbel.intelligent</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <properties>
  13. <flying-saucer-pdf.version>9.1.5</flying-saucer-pdf.version>
  14. <xmlworker.version>5.5.6</xmlworker.version>
  15. </properties>
  16. <artifactId>application-facade</artifactId>
  17. <name>application-facade</name>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.apache.poi</groupId>
  21. <artifactId>poi</artifactId>
  22. <version>3.9</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.poi</groupId>
  26. <artifactId>poi-ooxml</artifactId>
  27. <version>3.9</version>
  28. </dependency>
  29. <!--poi 调用版本 3.9 为了支持两个版本的后缀名升级到3.9 -->
  30. <dependency>
  31. <groupId>cn.hutool</groupId>
  32. <artifactId>hutool-all</artifactId>
  33. <version>4.5.15</version>
  34. </dependency>
  35. <!-- <dependency>-->
  36. <!-- <groupId>org.springframework</groupId>-->
  37. <!-- <artifactId>spring-messaging</artifactId>-->
  38. <!-- <version>5.3.8</version>-->
  39. <!-- </dependency>-->
  40. <!-- <dependency>-->
  41. <!-- <groupId>org.springframework</groupId>-->
  42. <!-- <artifactId>spring-websocket</artifactId>-->
  43. <!-- <version>5.3.8</version>-->
  44. <!-- </dependency>-->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-websocket</artifactId>
  48. <version>2.3.9.RELEASE</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.jihengbel.intelligent</groupId>
  52. <artifactId>common-config</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.jihengbel.intelligent</groupId>
  56. <artifactId>common-user</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>easyexcel</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.httpcomponents</groupId>
  64. <artifactId>httpclient</artifactId>
  65. <version>4.5.3</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>fastjson</artifactId>
  70. <version>1.2.32</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.itextpdf</groupId>
  74. <artifactId>itextpdf</artifactId>
  75. <version>5.5.6</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.itextpdf.tool</groupId>
  79. <artifactId>xmlworker</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.itextpdf</groupId>
  83. <artifactId>itext-asian</artifactId>
  84. <version>5.2.0</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.xhtmlrenderer</groupId>
  88. <artifactId>flying-saucer-pdf</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-freemarker</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-test</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. </dependencies>
  100. <build>
  101. <finalName>application-web</finalName>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. <executions>
  107. <execution>
  108. <goals>
  109. <goal>repackage</goal>
  110. </goals>
  111. </execution>
  112. </executions>
  113. </plugin>
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-compiler-plugin</artifactId>
  117. <configuration>
  118. <source>1.8</source>
  119. <target>1.8</target>
  120. <skip>true</skip>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. </build>
  125. </project>