pom.xml 8.3 KB

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