pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.qhiot</groupId>
  6. <artifactId>qhiot-app</artifactId>
  7. <version>1.0.1</version>
  8. </parent>
  9. <groupId>com.qhiot</groupId>
  10. <artifactId>qhiot-order</artifactId>
  11. <version>1.0.1</version>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.qhiot</groupId>
  19. <artifactId>qhiot-core</artifactId>
  20. <version>1.0.1</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.qhiot</groupId>
  24. <artifactId>qhiot-webcore</artifactId>
  25. <version>1.0.1</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.qhiot</groupId>
  29. <artifactId>qhiot-transport-db</artifactId>
  30. <version>1.0.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.hlin</groupId>
  34. <artifactId>sensitive-word-filter</artifactId>
  35. <version>0.0.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax</groupId>
  39. <artifactId>javaee-api</artifactId>
  40. <version>7.0</version>
  41. <scope>provided</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.servlet</groupId>
  45. <artifactId>javax.servlet-api</artifactId>
  46. <version>3.1.0</version>
  47. <scope>provided</scope>
  48. </dependency>
  49. <!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
  50. <dependency>
  51. <groupId>javax.servlet</groupId>
  52. <artifactId>jstl</artifactId>
  53. <version>1.2</version>
  54. </dependency>
  55. <!--<dependency>
  56. <groupId>com.qhiot</groupId>
  57. <artifactId>qhiot-eventcenter</artifactId>
  58. <version>1.0.1</version>
  59. </dependency>-->
  60. <dependency>
  61. <groupId>com.qhiot</groupId>
  62. <artifactId>qhiot-video</artifactId>
  63. <version>1.0.1</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.poi</groupId>
  67. <artifactId>poi</artifactId>
  68. <version>3.16</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.qhiot</groupId>
  72. <artifactId>qhiot-job</artifactId>
  73. <version>1.0.1</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.json</groupId>
  77. <artifactId>json</artifactId>
  78. <version>RELEASE</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.qhiot</groupId>
  82. <artifactId>qhiot-jms</artifactId>
  83. <version>1.0.1</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.qhiot</groupId>
  87. <artifactId>qhiot-notification</artifactId>
  88. <version>1.0.1</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.qhiot</groupId>
  92. <artifactId>qhiot-transport-web</artifactId>
  93. <version>1.0.1</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.qhiot</groupId>
  97. <artifactId>qhiot-transport-stats</artifactId>
  98. <version>1.0.1</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>net.sf.json-lib</groupId>
  102. <artifactId>json-lib</artifactId>
  103. <version>2.2.3</version>
  104. <classifier>jdk15</classifier><!-- 指定jdk版本 -->
  105. </dependency>
  106. <dependency>
  107. <groupId>redis.clients</groupId>
  108. <artifactId>jedis</artifactId>
  109. <version>2.9.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.artofsolving</groupId>
  113. <artifactId>jodconverter</artifactId>
  114. <version>2.2.2</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.openoffice</groupId>
  118. <artifactId>jurt</artifactId>
  119. <version>4.1.2</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.openoffice</groupId>
  123. <artifactId>ridl</artifactId>
  124. <version>4.1.2</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.openoffice</groupId>
  128. <artifactId>juh</artifactId>
  129. <version>4.1.2</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.openoffice</groupId>
  133. <artifactId>unoil</artifactId>
  134. <version>4.1.2</version>
  135. </dependency>
  136. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-jdk14 -->
  137. <dependency>
  138. <groupId>org.slf4j</groupId>
  139. <artifactId>slf4j-jdk14</artifactId>
  140. <version>1.7.25</version>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.qhiot</groupId>
  145. <artifactId>qhiot-cm</artifactId>
  146. <version>1.0.1</version>
  147. </dependency>
  148. </dependencies>
  149. <build>
  150. <resources>
  151. <resource>
  152. <directory>src/main/java</directory>
  153. <excludes>
  154. <exclude>**/*.java</exclude>
  155. </excludes>
  156. </resource>
  157. <resource>
  158. <directory>src/main/resources</directory>
  159. </resource>
  160. </resources>
  161. <plugins>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-jar-plugin</artifactId>
  165. <version>2.6</version>
  166. <configuration>
  167. <archive>
  168. <index>true</index>
  169. <manifest>
  170. <addClasspath>true</addClasspath>
  171. </manifest>
  172. </archive>
  173. <useDefaultManifestFile>true</useDefaultManifestFile>
  174. </configuration>
  175. </plugin>
  176. <plugin>
  177. <groupId>org.apache.maven.plugins</groupId>
  178. <artifactId>maven-dependency-plugin</artifactId>
  179. <executions>
  180. <execution>
  181. <id>copy</id>
  182. <phase>package</phase>
  183. <goals>
  184. <goal>copy-dependencies</goal>
  185. </goals>
  186. <configuration>
  187. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  188. </configuration>
  189. </execution>
  190. </executions>
  191. </plugin>
  192. </plugins>
  193. </build>
  194. <distributionManagement>
  195. <repository>
  196. <id>releases</id>
  197. <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
  198. </repository>
  199. </distributionManagement>
  200. </project>