pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.heartbeat</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.httpasync</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.creditease.moniter</groupId>
  27. <artifactId>com.creditease.uav.cache.redis</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>jpcap</groupId>
  31. <artifactId>jpcap</artifactId>
  32. <version>1.0</version>
  33. <scope>system</scope>
  34. <systemPath>${basedir}/../com.creditease.uav.agent.buildComponent/exlib/jpcap.jar</systemPath>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <!-- <plugin>
  40. <artifactId>maven-dependency-plugin</artifactId>
  41. <executions>
  42. <execution>
  43. <phase>package</phase>
  44. <goals>
  45. <goal>copy-dependencies</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. <configuration>
  50. <outputDirectory>${project.build.directory}/lib</outputDirectory>
  51. <includeScope>compile</includeScope>
  52. <excludeTransitive>false</excludeTransitive>
  53. <stripVersion>true</stripVersion>
  54. </configuration>
  55. </plugin>-->
  56. <plugin>
  57. <artifactId>maven-compiler-plugin</artifactId>
  58. <configuration>
  59. <source>1.7</source>
  60. <target>1.7</target>
  61. <encoding>UTF-8</encoding>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>