pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. </dependency>
  34. <!-- <dependency>-->
  35. <!-- <groupId>org.springframework</groupId>-->
  36. <!-- <artifactId>spring-messaging</artifactId>-->
  37. <!-- <version>5.3.8</version>-->
  38. <!-- </dependency>-->
  39. <!-- <dependency>-->
  40. <!-- <groupId>org.springframework</groupId>-->
  41. <!-- <artifactId>spring-websocket</artifactId>-->
  42. <!-- <version>5.3.8</version>-->
  43. <!-- </dependency>-->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-websocket</artifactId>
  47. <version>2.3.9.RELEASE</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.jihengbel.intelligent</groupId>
  51. <artifactId>common-config</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.jihengbel.intelligent</groupId>
  55. <artifactId>common-user</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>easyexcel</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.httpcomponents</groupId>
  63. <artifactId>httpclient</artifactId>
  64. <version>4.5.3</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>fastjson</artifactId>
  69. <version>1.2.32</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.itextpdf</groupId>
  73. <artifactId>itextpdf</artifactId>
  74. <version>5.5.6</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.itextpdf.tool</groupId>
  78. <artifactId>xmlworker</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.itextpdf</groupId>
  82. <artifactId>itext-asian</artifactId>
  83. <version>5.2.0</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.xhtmlrenderer</groupId>
  87. <artifactId>flying-saucer-pdf</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-freemarker</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-starter-test</artifactId>
  96. <scope>test</scope>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <finalName>application-web</finalName>
  101. <plugins>
  102. <plugin>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-maven-plugin</artifactId>
  105. <executions>
  106. <execution>
  107. <goals>
  108. <goal>repackage</goal>
  109. </goals>
  110. </execution>
  111. </executions>
  112. </plugin>
  113. <plugin>
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-compiler-plugin</artifactId>
  116. <configuration>
  117. <source>1.8</source>
  118. <target>1.8</target>
  119. <skip>true</skip>
  120. </configuration>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>