pom.xml 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. <parent>
  6. <artifactId>qhiot-transport</artifactId>
  7. <groupId>com.qhiot</groupId>
  8. <version>1.0.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.qhiot</groupId>
  12. <artifactId>qhiot-transport-stats</artifactId>
  13. <version>1.0.1</version>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.qhiot</groupId>
  18. <artifactId>qhiot-core</artifactId>
  19. <version>1.0.1</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.qhiot</groupId>
  23. <artifactId>qhiot-webcore</artifactId>
  24. <version>1.0.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.qhiot</groupId>
  28. <artifactId>qhiot-jms</artifactId>
  29. <version>1.0.1</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.qhiot</groupId>
  33. <artifactId>qhiot-transport-message</artifactId>
  34. <version>1.0.1</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.qhiot</groupId>
  38. <artifactId>qhiot-transport-db</artifactId>
  39. <version>1.0.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.qhiot</groupId>
  43. <artifactId>qhiot-job</artifactId>
  44. <version>1.0.1</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax</groupId>
  48. <artifactId>javaee-api</artifactId>
  49. <version>7.0</version>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>javax.servlet</groupId>
  54. <artifactId>javax.servlet-api</artifactId>
  55. <version>3.1.0</version>
  56. <scope>provided</scope>
  57. </dependency>
  58. <!--<dependency>
  59. <groupId>com.qhiot</groupId>
  60. <artifactId>qhiot-eventcenter</artifactId>
  61. <version>1.0.1</version>
  62. </dependency>-->
  63. <!--<dependency>
  64. <groupId>com.qhiot</groupId>
  65. <artifactId>qhiot-notification</artifactId>
  66. <version>1.0.1</version>
  67. </dependency>-->
  68. <dependency>
  69. <groupId>com.qhiot</groupId>
  70. <artifactId>qhiot-cache</artifactId>
  71. <version>1.0.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.qhiot</groupId>
  75. <artifactId>qhiot-transport-web</artifactId>
  76. <version>1.0.1</version>
  77. </dependency>
  78. <!-- <dependency>
  79. <groupId>com.qhiot</groupId>
  80. <artifactId>qhiot-operation</artifactId>
  81. <version>1.0.1</version>
  82. </dependency>-->
  83. <dependency>
  84. <groupId>com.dangdang</groupId>
  85. <artifactId>elastic-job-lite-core</artifactId>
  86. <version>2.1.5</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.dangdang</groupId>
  90. <artifactId>elastic-job-lite-core</artifactId>
  91. <version>2.1.5</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.dangdang</groupId>
  95. <artifactId>elastic-job-lite-spring</artifactId>
  96. <version>2.1.5</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>io.swagger</groupId>
  100. <artifactId>swagger-annotations</artifactId>
  101. <version>1.5.16</version>
  102. <scope>compile</scope>
  103. </dependency>
  104. </dependencies>
  105. <build>
  106. <resources>
  107. <resource>
  108. <directory>src/main/java</directory>
  109. <excludes>
  110. <exclude>**/*.java</exclude>
  111. </excludes>
  112. </resource>
  113. <resource>
  114. <directory>src/main/resources</directory>
  115. </resource>
  116. </resources>
  117. <plugins>
  118. <plugin>
  119. <groupId>org.apache.maven.plugins</groupId>
  120. <artifactId>maven-jar-plugin</artifactId>
  121. <version>2.6</version>
  122. <configuration>
  123. <archive>
  124. <index>true</index>
  125. <manifest>
  126. <addClasspath>true</addClasspath>
  127. </manifest>
  128. </archive>
  129. <useDefaultManifestFile>true</useDefaultManifestFile>
  130. </configuration>
  131. </plugin>
  132. <!--<plugin>-->
  133. <!--<groupId>org.apache.maven.plugins</groupId>-->
  134. <!--<artifactId>maven-javadoc-plugin</artifactId>-->
  135. <!--<version>2.10.4</version>-->
  136. <!--<configuration>-->
  137. <!--<aggregate>true</aggregate>-->
  138. <!--&lt;!&ndash; JDK 8 &ndash;&gt;-->
  139. <!--&lt;!&ndash;-->
  140. <!--<additionalparam>-Xdoclint:none</additionalparam>-->
  141. <!--&ndash;&gt;-->
  142. <!--</configuration>-->
  143. <!--<executions>-->
  144. <!--<execution>-->
  145. <!--<id>attach-javadocs</id>-->
  146. <!--<goals>-->
  147. <!--<goal>jar</goal>-->
  148. <!--</goals>-->
  149. <!--</execution>-->
  150. <!--</executions>-->
  151. <!--</plugin>-->
  152. <plugin>
  153. <groupId>org.apache.maven.plugins</groupId>
  154. <artifactId>maven-dependency-plugin</artifactId>
  155. <executions>
  156. <execution>
  157. <id>copy</id>
  158. <phase>package</phase>
  159. <goals>
  160. <goal>copy-dependencies</goal>
  161. </goals>
  162. <configuration>
  163. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  164. </configuration>
  165. </execution>
  166. </executions>
  167. </plugin>
  168. </plugins>
  169. </build>
  170. <distributionManagement>
  171. <repository>
  172. <id>releases</id>
  173. <url>http://116.62.67.134:9000/nexus/content/repositories/releases</url>
  174. </repository>
  175. </distributionManagement>
  176. </project>