pom.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. <!--
  70. <plugin>
  71. <groupId>com.steerinfo</groupId>
  72. <artifactId>generator-maven-plugin</artifactId>
  73. <version>3.0</version>
  74. <configuration>
  75. <connUrl>jdbc:oracle:thin:@10.99.200.87:1521/jgwzjl</connUrl>
  76. <targetPackage>com.steerinfo.baseinfo</targetPackage>
  77. <user>lims</user>
  78. <password>lims_2021</password>
  79. <tables>
  80. <params>app_verification_code</params>
  81. </tables>
  82. </configuration>
  83. <executions>
  84. <execution>
  85. <phase>compile</phase>
  86. <goals>
  87. <goal>steerinfo</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. -->
  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. </excludes>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. <pluginManagement>
  125. <plugins>
  126. <!-- This plugin's configuration is used to store Eclipse m2e settings
  127. only. It has no influence on the Maven build itself. -->
  128. <!-- <plugin>-->
  129. <!-- <groupId>org.eclipse.m2e</groupId>-->
  130. <!-- <artifactId>lifecycle-mapping</artifactId>-->
  131. <!-- <version>1.0.0</version>-->
  132. <!-- <configuration>-->
  133. <!-- <lifecycleMappingMetadata>-->
  134. <!-- <pluginExecutions>-->
  135. <!-- <pluginExecution>-->
  136. <!-- <pluginExecutionFilter>-->
  137. <!-- <groupId>com.steerinfo</groupId>-->
  138. <!-- <artifactId>generator-maven-plugin</artifactId>-->
  139. <!-- <versionRange>[0.0.1,)</versionRange>-->
  140. <!-- <goals>-->
  141. <!-- <goal>steerinfo</goal>-->
  142. <!-- </goals>-->
  143. <!-- </pluginExecutionFilter>-->
  144. <!-- <action>-->
  145. <!-- <ignore></ignore>-->
  146. <!-- </action>-->
  147. <!-- </pluginExecution>-->
  148. <!-- </pluginExecutions>-->
  149. <!-- </lifecycleMappingMetadata>-->
  150. <!-- </configuration>-->
  151. <!-- </plugin>-->
  152. </plugins>
  153. </pluginManagement>
  154. </build>
  155. <dependencies>
  156. <!--连接实时数据库-->
  157. <dependency>
  158. <groupId>com.hnshituo</groupId>
  159. <artifactId>icore-rtdb</artifactId>
  160. <version>2.1.2</version>
  161. </dependency>
  162. <!-- cxf支持 -->
  163. <dependency>
  164. <groupId>org.apache.cxf</groupId>
  165. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  166. <version>3.2.6</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.cxf</groupId>
  170. <artifactId>cxf-rt-transports-http</artifactId>
  171. <version>3.2.6</version>
  172. </dependency>
  173. <!-- 公式计算 -->
  174. <dependency>
  175. <groupId>org.apache.commons</groupId>
  176. <artifactId>commons-jexl</artifactId>
  177. <version>2.1.1</version>
  178. </dependency>
  179. <!-- 文件上传 -->
  180. <dependency>
  181. <groupId>commons-fileupload</groupId>
  182. <artifactId>commons-fileupload</artifactId>
  183. <version>1.2</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.apache.poi</groupId>
  187. <artifactId>poi-ooxml</artifactId>
  188. <version>3.17</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>commons-httpclient</groupId>
  192. <artifactId>commons-httpclient</artifactId>
  193. <version>3.1</version>
  194. </dependency>
  195. <!-- 集成fastjson -->
  196. <dependency>
  197. <groupId>com.alibaba</groupId>
  198. <artifactId>fastjson</artifactId>
  199. <version>1.2.76</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>cn.easyproject</groupId>
  203. <artifactId>orai18n</artifactId>
  204. <version>12.1.0.2.0</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>com.steerinfo</groupId>
  208. <artifactId>framework</artifactId>
  209. <version>1.1.1</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>cn.hutool</groupId>
  213. <artifactId>hutool-all</artifactId>
  214. <version>4.6.0</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>org.bytedeco</groupId>
  218. <artifactId>javacv</artifactId>
  219. <version>1.5.4</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>org.bytedeco</groupId>
  223. <artifactId>javacv-platform</artifactId>
  224. <version>1.5.4</version>
  225. </dependency>
  226. <!-- <dependency>-->
  227. <!-- <groupId>com.wellbole</groupId>-->
  228. <!-- <artifactId>smsengine-client</artifactId>-->
  229. <!-- <version>3.8.0</version>-->
  230. <!-- </dependency>-->
  231. </dependencies>
  232. <repositories>
  233. <repository>
  234. <id>maven-public</id>
  235. <name>steerinfo maven-releases</name>
  236. <url>https://nexus.steerinfo.com/repository/maven-public/</url>
  237. </repository>
  238. <repository>
  239. <id>maven-releases</id>
  240. <name>steerinfo maven-releases</name>
  241. <url>https://nexus.steerinfo.com/repository/maven-releases/</url>
  242. </repository>
  243. </repositories>
  244. </project>