pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>ce-datamonitorsystem</artifactId>
  6. <groupId>com.creditease.moniter</groupId>
  7. <version>1.0</version>
  8. <relativePath>../com.creditease.uav.superpom</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>com.creditease.uav.agent</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.creditease.moniter</groupId>
  15. <artifactId>com.creditease.uav.helper</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.creditease.moniter</groupId>
  19. <artifactId>com.creditease.uav.base</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.creditease.moniter</groupId>
  23. <artifactId>com.creditease.uav.messaging</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.google.guava</groupId>
  27. <artifactId>guava</artifactId>
  28. <version>11.0.2</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.creditease.moniter</groupId>
  32. <artifactId>com.creditease.uav.agent.heartbeat</artifactId>
  33. <exclusions>
  34. <exclusion>
  35. <groupId>io.lettuce</groupId>
  36. <artifactId>lettuce-core</artifactId>
  37. </exclusion>
  38. </exclusions>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.creditease.moniter</groupId>
  42. <artifactId>com.creditease.uav.notifymanager</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.creditease.moniter</groupId>
  46. <artifactId>org.uavstack.resources.common</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.creditease.moniter</groupId>
  50. <artifactId>com.creditease.uav.collect</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.creditease.moniter</groupId>
  54. <artifactId>com.creditease.uav.httpasync</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>junit</groupId>
  58. <artifactId>junit</artifactId>
  59. <scope>test</scope>
  60. <version>4.10</version>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <artifactId>maven-dependency-plugin</artifactId>
  67. <executions>
  68. <execution>
  69. <phase>package</phase>
  70. <goals>
  71. <goal>copy-dependencies</goal>
  72. </goals>
  73. </execution>
  74. </executions>
  75. <configuration>
  76. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  77. <includeScope>compile</includeScope>
  78. <excludeTransitive>false</excludeTransitive>
  79. <stripVersion>true</stripVersion>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-compiler-plugin</artifactId>
  84. <configuration>
  85. <source>1.7</source>
  86. <target>1.7</target>
  87. <encoding>UTF-8</encoding>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. <pluginManagement>
  92. <plugins>
  93. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  94. <plugin>
  95. <groupId>org.eclipse.m2e</groupId>
  96. <artifactId>lifecycle-mapping</artifactId>
  97. <version>1.0.0</version>
  98. <configuration>
  99. <lifecycleMappingMetadata>
  100. <pluginExecutions>
  101. <pluginExecution>
  102. <pluginExecutionFilter>
  103. <groupId>
  104. org.apache.maven.plugins
  105. </groupId>
  106. <artifactId>
  107. maven-dependency-plugin
  108. </artifactId>
  109. <versionRange>
  110. [2.1,)
  111. </versionRange>
  112. <goals>
  113. <goal>
  114. copy-dependencies
  115. </goal>
  116. </goals>
  117. </pluginExecutionFilter>
  118. <action>
  119. <ignore></ignore>
  120. </action>
  121. </pluginExecution>
  122. </pluginExecutions>
  123. </lifecycleMappingMetadata>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. </pluginManagement>
  128. </build>
  129. </project>