pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.upgrade</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>io.netty</groupId>
  15. <artifactId>netty-all</artifactId>
  16. <version>4.0.25.Final</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.httpcomponents</groupId>
  20. <artifactId>httpclient</artifactId>
  21. <version>4.4.1</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>commons-codec</groupId>
  25. <artifactId>commons-codec</artifactId>
  26. <version>1.9</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.creditease.moniter</groupId>
  30. <artifactId>com.creditease.uav.fastjson</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.creditease.moniter</groupId>
  34. <artifactId>com.creditease.uav.helper</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.creditease.moniter</groupId>
  38. <artifactId>com.creditease.uav.logging</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.creditease.moniter</groupId>
  42. <artifactId>com.creditease.uav.base</artifactId>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <configuration>
  50. <source>1.7</source>
  51. <target>1.7</target>
  52. <encoding>UTF-8</encoding>
  53. </configuration>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>