pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.steerinfo</groupId>
  6. <artifactId>icore-paas</artifactId>
  7. <version>1.0</version>
  8. <relativePath/>
  9. </parent>
  10. <groupId>com.steerinfo</groupId>
  11. <artifactId>jg_wzjl_api</artifactId>
  12. <version>1.0</version>
  13. <packaging>jar</packaging>
  14. <name>jg_wzjl_api</name>
  15. <url>http://maven.apache.org</url>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <build>
  20. <!--自运行 -->
  21. <resources>
  22. <resource>
  23. <directory>src/main/java</directory>
  24. <includes>
  25. <include>**/*.class</include>
  26. <include>**/*.xml</include>
  27. <include>**/*.properties</include>
  28. </includes>
  29. <filtering>false</filtering>
  30. </resource>
  31. <resource>
  32. <directory>lib</directory>
  33. <targetPath>BOOT-INF/lib/</targetPath>
  34. <includes>
  35. <include>**/*.jar</include>
  36. </includes>
  37. </resource>
  38. <resource>
  39. <directory>src/main/resources</directory>
  40. <targetPath>BOOT-INF/classes/</targetPath>
  41. </resource>
  42. <resource>
  43. <directory>src/main/resources</directory>
  44. <filtering>false</filtering>
  45. <includes>
  46. <include>*.key</include>
  47. <include>*.properties</include>
  48. <include>*.yml</include>
  49. <include>*.xml</include>
  50. <include>static/**</include>
  51. <include>i18n/**</include>
  52. <include>templates/**</include>
  53. </includes>
  54. </resource>
  55. <resource>
  56. <directory>src/main/java</directory>
  57. <includes>
  58. <include>**/*.xml</include>
  59. </includes>
  60. <filtering>false</filtering>
  61. </resource>
  62. </resources>
  63. <plugins>
  64. <!--数据库链接、目标路径、数据库用户、数据库密码-->
  65. <!-- 一对一 一对多的配置文件generatorConfig.xml 请填写- - -绝对路经 -->
  66. <!-- 配置文件模版位置在 generator-maven-plugin-3.0.jar 包的主目录下 -->
  67. <!--<xmlProject>${project.basedir}\src\main\resources\generatorConfig.xml</xmlProject>-->
  68. <!-- 表生成model默认生成驼峰式:sys_user->SysUser,如果需要生成其它名字可以用逗号分隔:sys_user,User -->
  69. <!-- <plugin>-->
  70. <!-- <groupId>com.steerinfo</groupId>-->
  71. <!-- <artifactId>generator-maven-plugin</artifactId>-->
  72. <!-- <version>3.0</version>-->
  73. <!-- <configuration>-->
  74. <!-- <connUrl>jdbc:oracle:thin:@10.99.200.87:1521/jgwzjl</connUrl>-->
  75. <!-- <targetPackage>com.steerinfo.baseinfo</targetPackage>-->
  76. <!-- <user>lims</user>-->
  77. <!-- <password>lims_2021</password>-->
  78. <!-- <tables>-->
  79. <!-- <params>METER_REPORT_WIDE</params>-->
  80. <!-- <params>METER_BASE_MATTER_MAP_OUT</params>-->
  81. <!-- <params>TRUCK_TARE_CHECK_WIDE</params>-->
  82. <!-- </tables>-->
  83. <!-- </configuration>-->
  84. <!-- <executions>-->
  85. <!-- <execution>-->
  86. <!-- <phase>compile</phase>-->
  87. <!-- <goals>-->
  88. <!-- <goal>steerinfo</goal>-->
  89. <!-- </goals>-->
  90. <!-- </execution>-->
  91. <!-- </executions>-->
  92. <!-- </plugin>-->
  93. <plugin>
  94. <groupId>org.springframework.boot</groupId>
  95. <artifactId>spring-boot-maven-plugin</artifactId>
  96. <configuration>
  97. <!-- fork : 如果没有该项配置,devtools不会起作用,即应用不会restart -->
  98. <!-- <fork>true</fork> -->
  99. <mainClass>com.steerinfo.SysManageApplication</mainClass>
  100. </configuration>
  101. </plugin>
  102. <plugin>
  103. <groupId>org.apache.maven.plugins</groupId>
  104. <artifactId>maven-compiler-plugin</artifactId>
  105. <configuration>
  106. <compilerVersion>${java.version}</compilerVersion>
  107. <source>${java.version}</source>
  108. <target>${java.version}</target>
  109. <encoding>${project.build.sourceEncoding}</encoding>
  110. </configuration>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-jar-plugin</artifactId>
  115. <configuration>
  116. <excludes>
  117. <!-- 排除 classes 目录下的这两个配置文件 -->
  118. <exclude>**/application.properties</exclude>
  119. <exclude>**/application-prod.properties</exclude>
  120. <exclude>**/application-dev.properties</exclude>
  121. <exclude>**/jg_wzjl_api.properties</exclude>
  122. <exclude>**/jg_wzjl_api-prod.properties</exclude>
  123. </excludes>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. <pluginManagement>
  128. <plugins>
  129. <!-- This plugin's configuration is used to store Eclipse m2e settings
  130. only. It has no influence on the Maven build itself. -->
  131. <!-- <plugin>-->
  132. <!-- <groupId>org.eclipse.m2e</groupId>-->
  133. <!-- <artifactId>lifecycle-mapping</artifactId>-->
  134. <!-- <version>1.0.0</version>-->
  135. <!-- <configuration>-->
  136. <!-- <lifecycleMappingMetadata>-->
  137. <!-- <pluginExecutions>-->
  138. <!-- <pluginExecution>-->
  139. <!-- <pluginExecutionFilter>-->
  140. <!-- <groupId>com.steerinfo</groupId>-->
  141. <!-- <artifactId>generator-maven-plugin</artifactId>-->
  142. <!-- <versionRange>[0.0.1,)</versionRange>-->
  143. <!-- <goals>-->
  144. <!-- <goal>steerinfo</goal>-->
  145. <!-- </goals>-->
  146. <!-- </pluginExecutionFilter>-->
  147. <!-- <action>-->
  148. <!-- <ignore></ignore>-->
  149. <!-- </action>-->
  150. <!-- </pluginExecution>-->
  151. <!-- </pluginExecutions>-->
  152. <!-- </lifecycleMappingMetadata>-->
  153. <!-- </configuration>-->
  154. <!-- </plugin>-->
  155. </plugins>
  156. </pluginManagement>
  157. </build>
  158. <dependencies>
  159. <!--连接实时数据库-->
  160. <dependency>
  161. <groupId>com.hnshituo</groupId>
  162. <artifactId>icore-rtdb</artifactId>
  163. <version>2.1.2</version>
  164. </dependency>
  165. <!-- cxf支持 -->
  166. <dependency>
  167. <groupId>org.apache.cxf</groupId>
  168. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  169. <version>3.2.6</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.cxf</groupId>
  173. <artifactId>cxf-rt-transports-http</artifactId>
  174. <version>3.2.6</version>
  175. </dependency>
  176. <!-- 公式计算 -->
  177. <dependency>
  178. <groupId>org.apache.commons</groupId>
  179. <artifactId>commons-jexl</artifactId>
  180. <version>2.1.1</version>
  181. </dependency>
  182. <!-- 文件上传 -->
  183. <dependency>
  184. <groupId>commons-fileupload</groupId>
  185. <artifactId>commons-fileupload</artifactId>
  186. <version>1.2</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.apache.poi</groupId>
  190. <artifactId>poi-ooxml</artifactId>
  191. <version>3.17</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>commons-httpclient</groupId>
  195. <artifactId>commons-httpclient</artifactId>
  196. <version>3.1</version>
  197. </dependency>
  198. <!-- 集成fastjson -->
  199. <dependency>
  200. <groupId>com.alibaba</groupId>
  201. <artifactId>fastjson</artifactId>
  202. <version>1.2.76</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>cn.easyproject</groupId>
  206. <artifactId>orai18n</artifactId>
  207. <version>12.1.0.2.0</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>com.steerinfo</groupId>
  211. <artifactId>framework</artifactId>
  212. <version>1.1.1</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>cn.hutool</groupId>
  216. <artifactId>hutool-all</artifactId>
  217. <version>4.6.0</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>org.bytedeco</groupId>
  221. <artifactId>javacv</artifactId>
  222. <version>1.5.4</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.bytedeco</groupId>
  226. <artifactId>javacv-platform</artifactId>
  227. <version>1.5.4</version>
  228. </dependency>
  229. <!-- <dependency>-->
  230. <!-- <groupId>com.wellbole</groupId>-->
  231. <!-- <artifactId>smsengine-client</artifactId>-->
  232. <!-- <version>3.8.0</version>-->
  233. <!-- </dependency>-->
  234. </dependencies>
  235. <repositories>
  236. <repository>
  237. <id>maven-public</id>
  238. <name>steerinfo maven-releases</name>
  239. <url>https://nexus.steerinfo.com/repository/maven-public/</url>
  240. </repository>
  241. <repository>
  242. <id>maven-releases</id>
  243. <name>steerinfo maven-releases</name>
  244. <url>https://nexus.steerinfo.com/repository/maven-releases/</url>
  245. </repository>
  246. </repositories>
  247. </project>