pom.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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>org.uavstack.resources.common</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>com.creditease.moniter</groupId>
  31. <artifactId>com.creditease.uav.messaging</artifactId>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <configuration>
  39. <source>1.7</source>
  40. <target>1.7</target>
  41. <encoding>UTF-8</encoding>
  42. </configuration>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>