pom.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.example</groupId>
  7. <artifactId>antai-api</artifactId>
  8. <version>1.2</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.0.7.RELEASE</version>
  13. </parent>
  14. <dependencyManagement>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-dependencies</artifactId>
  19. <!--Spring Cloud的版本-->
  20. <version>Finchley.SR2</version>
  21. <type>pom</type>
  22. <scope>import</scope>
  23. </dependency>
  24. </dependencies>
  25. </dependencyManagement>
  26. <repositories>
  27. <repository>
  28. <id>maven-public</id>
  29. <name>steerinfo maven-public</name>
  30. <url>https://nexus.steerinfo.com/repository/maven-public/</url>
  31. </repository>
  32. </repositories>
  33. <distributionManagement>
  34. <repository>
  35. <id>maven-releases</id>
  36. <name>steerinfo nexus-releases</name>
  37. <url>http://nexus.steerinfo.com/repository/maven-releases/</url>
  38. </repository>
  39. <snapshotRepository>
  40. <id>maven-snapshots</id>
  41. <url>http://nexus.steerinfo.com/repository/maven-snapshots/</url>
  42. </snapshotRepository>
  43. </distributionManagement>
  44. <dependencies>
  45. <!--websocket-->
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-websocket</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>fastjson</artifactId>
  53. <version>1.2.24</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-web</artifactId>
  58. <version>2.0.7.RELEASE</version>
  59. </dependency>
  60. <!--mybatisPlus-->
  61. <dependency>
  62. <groupId>com.baomidou</groupId>
  63. <artifactId>mybatis-plus-boot-starter</artifactId>
  64. <version>3.4.2</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>commons-io</groupId>
  68. <artifactId>commons-io</artifactId>
  69. <version>2.11.0</version>
  70. </dependency>
  71. <!-- <dependency>-->
  72. <!-- <groupId>org.springframework.boot</groupId>-->
  73. <!-- <artifactId>spring-boot-starter-security</artifactId>-->
  74. <!-- </dependency>-->
  75. <!--swagger-->
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-swagger2</artifactId>
  79. <version>2.9.2</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>io.springfox</groupId>
  83. <artifactId>springfox-swagger-ui</artifactId>
  84. <version>2.9.2</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi</artifactId>
  89. <version>3.17</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.apache.poi</groupId>
  93. <artifactId>poi-ooxml</artifactId>
  94. <version>3.17</version>
  95. </dependency>
  96. <!--steerinfo-->
  97. <dependency>
  98. <groupId>com.steerinfo</groupId>
  99. <artifactId>framework</artifactId>
  100. <version>1.0</version>
  101. </dependency>
  102. <!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
  103. <dependency>
  104. <groupId>org.mybatis</groupId>
  105. <artifactId>mybatis</artifactId>
  106. <version>3.5.6</version>
  107. </dependency>
  108. <!--文件上传-->
  109. <dependency>
  110. <groupId>commons-net</groupId>
  111. <artifactId>commons-net</artifactId>
  112. <version>3.6</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-fileupload</groupId>
  116. <artifactId>commons-fileupload</artifactId>
  117. <version>1.3.2</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>commons-io</groupId>
  121. <artifactId>commons-io</artifactId>
  122. <version>2.4</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.poi</groupId>
  126. <artifactId>poi-ooxml</artifactId>
  127. <version>3.17</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.apache.poi</groupId>
  131. <artifactId>poi</artifactId>
  132. <version>3.17</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.poi</groupId>
  136. <artifactId>poi-scratchpad</artifactId>
  137. <version>3.17</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.poi</groupId>
  141. <artifactId>poi-ooxml-schemas</artifactId>
  142. <version>3.17</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>fr.opensagres.xdocreport</groupId>
  146. <artifactId>xdocreport</artifactId>
  147. <version>2.0.1</version>
  148. </dependency>
  149. <!-- pdf -->
  150. <dependency>
  151. <groupId>com.itextpdf</groupId>
  152. <artifactId>itextpdf</artifactId>
  153. <version>5.5.11</version>
  154. </dependency>
  155. </dependencies>
  156. <build>
  157. <plugins>
  158. <!-- 自动生成代码文件 -->
  159. <plugin>
  160. <groupId>com.steerinfo</groupId>
  161. <artifactId>generator-maven-plugin</artifactId>
  162. <version>3.0</version>
  163. <configuration>
  164. <connUrl>jdbc:oracle:thin:@172.16.90.214:1521/gxmes</connUrl>
  165. <user>gxmestest</user>
  166. <password>gxmestest</password>
  167. <!--包名-->
  168. <targetPackage>com.steerinfo.dil</targetPackage>
  169. <tables>
  170. <param>SYSTEM_FILE</param>
  171. </tables>
  172. </configuration>
  173. <executions>
  174. <execution>
  175. <phase>compile</phase>
  176. <goals>
  177. <goal>steerinfo</goal>
  178. </goals>
  179. </execution>
  180. </executions>
  181. </plugin>
  182. <plugin>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-maven-plugin</artifactId>
  185. <executions>
  186. <execution>
  187. <goals>
  188. <goal>repackage</goal>
  189. </goals>
  190. </execution>
  191. </executions>
  192. </plugin>
  193. </plugins>
  194. <resources>
  195. <resource>
  196. <directory>src/main/resources</directory>
  197. <includes>
  198. <include>**/*.xml</include>
  199. </includes>
  200. </resource>
  201. <resource>
  202. <directory>src/main/resources</directory>
  203. </resource>
  204. </resources>
  205. </build>
  206. </project>