pom.xml 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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-wms-api</artifactId>
  8. <version>1.13</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. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
  46. <dependency>
  47. <groupId>org.apache.poi</groupId>
  48. <artifactId>poi</artifactId>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  51. <dependency>
  52. <groupId>org.apache.poi</groupId>
  53. <artifactId>poi-ooxml</artifactId>
  54. </dependency>
  55. <!--websocket-->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-websocket</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-web</artifactId>
  63. </dependency>
  64. <!--mybatisPlus-->
  65. <dependency>
  66. <groupId>com.baomidou</groupId>
  67. <artifactId>mybatis-plus-boot-starter</artifactId>
  68. <version>3.4.2</version>
  69. </dependency>
  70. <!--swagger-->
  71. <dependency>
  72. <groupId>io.springfox</groupId>
  73. <artifactId>springfox-swagger2</artifactId>
  74. <version>2.9.2</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>io.springfox</groupId>
  78. <artifactId>springfox-swagger-ui</artifactId>
  79. <version>2.9.2</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.apache.poi</groupId>
  83. <artifactId>poi</artifactId>
  84. <version>3.17</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi-ooxml</artifactId>
  89. <version>3.17</version>
  90. </dependency>
  91. <!--steerinfo-->
  92. <dependency>
  93. <groupId>com.steerinfo</groupId>
  94. <artifactId>framework</artifactId>
  95. <version>1.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>easyexcel</artifactId>
  100. <version>3.1.1</version>
  101. </dependency>
  102. </dependencies>
  103. <build>
  104. <plugins>
  105. <!-- 自动生成代码文件 -->
  106. <plugin>
  107. <groupId>com.steerinfo</groupId>
  108. <artifactId>generator-maven-plugin</artifactId>
  109. <version>3.0</version>
  110. <configuration>
  111. <connUrl>jdbc:oracle:thin:@172.16.33.163:1521:ilsdbpri</connUrl>
  112. <user>dagang</user>
  113. <password>root123</password>
  114. <!--包名-->
  115. <targetPackage>com.steerinfo.dil</targetPackage>
  116. <tables>
  117. <!-- <param>WMSP_INBOUND_RESULT</param>&lt;!&ndash;运力&ndash;&gt;-->
  118. <!-- <param>WMSP_INBOUND_SCAN_RESULT</param>-->
  119. <!-- <param>WMSP_INBOUND_STACK_RESULT</param>-->
  120. <!-- <param>WMSP_INBOUND_CORRECT_RESULT</param>-->
  121. <!-- <param>WMSP_INBOUND_DRIVING_RESULT</param>-->
  122. <!-- <param>WMSP_INBOUND_SCAN_RESULT</param>-->
  123. <!-- <param>RMS_PWAREHOUSE_GRID</param>-->
  124. <!-- <param>OYE_INBOUND_RESULT</param>-->
  125. <!-- <param>OYE_REALTIME_INVENTORY</param>-->
  126. <param>OYE_OUTBOUND_RESULT</param>
  127. </tables>
  128. </configuration>
  129. <executions>
  130. <execution>
  131. <phase>compile</phase>
  132. <goals>
  133. <goal>steerinfo</goal>
  134. </goals>
  135. </execution>
  136. </executions>
  137. </plugin>
  138. <plugin>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-maven-plugin</artifactId>
  141. <executions>
  142. <execution>
  143. <goals>
  144. <goal>repackage</goal>
  145. </goals>
  146. </execution>
  147. </executions>
  148. </plugin>
  149. </plugins>
  150. <resources>
  151. <resource>
  152. <directory>src/main/resources</directory>
  153. <includes>
  154. <include>**/*.xml</include>
  155. </includes>
  156. </resource>
  157. <resource>
  158. <directory>src/main/resources</directory>
  159. </resource>
  160. </resources>
  161. </build>
  162. </project>