pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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.healthmanager</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.creditease.moniter</groupId>
  27. <artifactId>com.creditease.uav.agent.heartbeat</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.creditease.moniter</groupId>
  31. <artifactId>com.creditease.uav.notifymanager</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.creditease.moniter</groupId>
  35. <artifactId>com.creditease.uav.notifycenter</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.creditease.moniter</groupId>
  39. <artifactId>com.creditease.uav.datastore</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.creditease.moniter</groupId>
  43. <artifactId>com.creditease.uav.collect</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.creditease.moniter</groupId>
  47. <artifactId>com.creditease.uav.invokechain</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.creditease.moniter</groupId>
  51. <artifactId>com.creditease.uav.threadanalysis</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.creditease.moniter</groupId>
  55. <artifactId>org.uavstack.resources.common</artifactId>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <artifactId>maven-dependency-plugin</artifactId>
  62. <executions>
  63. <execution>
  64. <phase>package</phase>
  65. <goals>
  66. <goal>copy-dependencies</goal>
  67. </goals>
  68. </execution>
  69. </executions>
  70. <configuration>
  71. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  72. <includeScope>compile</includeScope>
  73. <excludeTransitive>false</excludeTransitive>
  74. <stripVersion>true</stripVersion>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <configuration>
  80. <source>1.7</source>
  81. <target>1.7</target>
  82. <encoding>UTF-8</encoding>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. <pluginManagement>
  87. <plugins>
  88. <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
  89. <plugin>
  90. <groupId>org.eclipse.m2e</groupId>
  91. <artifactId>lifecycle-mapping</artifactId>
  92. <version>1.0.0</version>
  93. <configuration>
  94. <lifecycleMappingMetadata>
  95. <pluginExecutions>
  96. <pluginExecution>
  97. <pluginExecutionFilter>
  98. <groupId>
  99. org.apache.maven.plugins
  100. </groupId>
  101. <artifactId>
  102. maven-dependency-plugin
  103. </artifactId>
  104. <versionRange>
  105. [2.1,)
  106. </versionRange>
  107. <goals>
  108. <goal>
  109. copy-dependencies
  110. </goal>
  111. </goals>
  112. </pluginExecutionFilter>
  113. <action>
  114. <ignore></ignore>
  115. </action>
  116. </pluginExecution>
  117. </pluginExecutions>
  118. </lifecycleMappingMetadata>
  119. </configuration>
  120. </plugin>
  121. </plugins>
  122. </pluginManagement>
  123. </build>
  124. </project>