pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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>dil-tms-truck-api</artifactId>
  8. <version>1.8</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. <!--minio-->
  46. <dependency>
  47. <groupId>io.minio</groupId>
  48. <artifactId>minio</artifactId>
  49. <version>8.2.1</version>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>com.squareup.okhttp3</groupId>
  53. <artifactId>okhttp</artifactId>
  54. </exclusion>
  55. </exclusions>
  56. </dependency>
  57. <!--Redis-->
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-data-redis</artifactId>
  61. </dependency>
  62. <!--中交新路的包这个问杨-->
  63. <dependency>
  64. <groupId>com.ZhongJiaoXingLu</groupId>
  65. <artifactId>openapi-sdk</artifactId>
  66. <version>6.0</version>
  67. </dependency>
  68. <!--websocket-->
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-websocket</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-web</artifactId>
  76. </dependency>
  77. <!--mybatisPlus-->
  78. <dependency>
  79. <groupId>com.baomidou</groupId>
  80. <artifactId>mybatis-plus-boot-starter</artifactId>
  81. <version>3.4.2</version>
  82. </dependency>
  83. <!--swagger-->
  84. <dependency>
  85. <groupId>io.springfox</groupId>
  86. <artifactId>springfox-swagger2</artifactId>
  87. <version>2.9.2</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.springfox</groupId>
  91. <artifactId>springfox-swagger-ui</artifactId>
  92. <version>2.9.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.poi</groupId>
  96. <artifactId>poi</artifactId>
  97. <version>3.17</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.poi</groupId>
  101. <artifactId>poi-ooxml</artifactId>
  102. <version>3.17</version>
  103. </dependency>
  104. <!--steerinfo-->
  105. <dependency>
  106. <groupId>com.steerinfo</groupId>
  107. <artifactId>framework</artifactId>
  108. <version>1.0</version>
  109. </dependency>
  110. <!-- httpClient远程调用接口 -->
  111. <dependency>
  112. <groupId>org.apache.httpcomponents</groupId>
  113. <artifactId>httpclient</artifactId>
  114. <version>4.5.13</version>
  115. </dependency>
  116. <!-- 系统配置接口 -->
  117. <dependency>
  118. <groupId>com.steerinfo</groupId>
  119. <artifactId>systemui</artifactId>
  120. <version>1.0</version>
  121. </dependency>
  122. <!-- fastJson转换-->
  123. <dependency>
  124. <groupId>com.alibaba</groupId>
  125. <artifactId>fastjson</artifactId>
  126. <version>1.2.75</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.springframework.boot</groupId>
  130. <artifactId>spring-boot-starter-test</artifactId>
  131. <!-- 表示开发的时候引入,发布的时候不会加载此包 -->
  132. <scope>test</scope>
  133. </dependency>
  134. <!-- <dependency>-->
  135. <!-- <groupId>org.junit.jupiter</groupId>-->
  136. <!-- <artifactId>junit-jupiter</artifactId>-->
  137. <!-- <version>RELEASE</version>-->
  138. <!-- <scope>compile</scope>-->
  139. <!-- </dependency>-->
  140. </dependencies>
  141. <build>
  142. <plugins>
  143. <!-- 自动生成代码文件 -->
  144. <plugin>
  145. <groupId>com.steerinfo</groupId>
  146. <artifactId>generator-maven-plugin</artifactId>
  147. <version>3.0</version>
  148. <configuration>
  149. <connUrl>jdbc:oracle:thin:@172.16.33.163:1521:ilsdbpri</connUrl>
  150. <user>dil</user>
  151. <password>Dil123789</password>
  152. <!--包名-->
  153. <targetPackage>com.steerinfo.dil</targetPackage>
  154. <tables>
  155. <!-- <param>MEASURE_JSON_DATA</param>-->
  156. <param>DIL_ROLE_ORGCODE_TABLE</param>
  157. <!-- <param>DIL_CAPACITY_TIMES</param>-->
  158. </tables>
  159. </configuration>
  160. <executions>
  161. <execution>
  162. <phase>compile</phase>
  163. <goals>
  164. <goal>steerinfo</goal>
  165. </goals>
  166. </execution>
  167. </executions>
  168. </plugin>
  169. <plugin>
  170. <groupId>org.springframework.boot</groupId>
  171. <artifactId>spring-boot-maven-plugin</artifactId>
  172. <executions>
  173. <execution>
  174. <goals>
  175. <goal>repackage</goal>
  176. </goals>
  177. </execution>
  178. </executions>
  179. </plugin>
  180. </plugins>
  181. <resources>
  182. <resource>
  183. <directory>src/main/resources</directory>
  184. <includes>
  185. <include>**/*.xml</include>
  186. </includes>
  187. </resource>
  188. <resource>
  189. <directory>src/main/resources</directory>
  190. </resource>
  191. </resources>
  192. </build>
  193. </project>