pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>ce-datamonitorsystem</artifactId>
  7. <groupId>com.creditease.moniter</groupId>
  8. <version>1.0</version>
  9. <relativePath>../com.creditease.uav.superpom</relativePath>
  10. </parent>
  11. <artifactId>com.creditease.uav.collect</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.notifymanager</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.creditease.moniter</groupId>
  31. <artifactId>org.uavstack.resources.common</artifactId>
  32. </dependency>
  33. <!-- @Deprecated -->
  34. <dependency>
  35. <groupId>com.google.guava</groupId>
  36. <artifactId>guava</artifactId>
  37. <version>11.0.2</version>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <artifactId>maven-compiler-plugin</artifactId>
  44. <!-- <version>3.3</version> -->
  45. <configuration>
  46. <source>1.7</source>
  47. <target>1.7</target>
  48. <encoding>UTF-8</encoding>
  49. </configuration>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>