pom.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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/maven-v4_0_0.xsd">
  4. <parent>
  5. <groupId>com.ctrip.framework.apollo</groupId>
  6. <artifactId>apollo</artifactId>
  7. <version>0.2.0</version>
  8. <relativePath>../pom.xml</relativePath>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>apollo-core</artifactId>
  12. <name>Apollo Core</name>
  13. <packaging>jar</packaging>
  14. <properties>
  15. <java.version>1.7</java.version>
  16. <github.path>${project.artifactId}</github.path>
  17. </properties>
  18. <dependencies>
  19. <!-- cat -->
  20. <dependency>
  21. <groupId>com.dianping.cat</groupId>
  22. <artifactId>cat-client</artifactId>
  23. </dependency>
  24. <!-- end of cat -->
  25. <!-- json -->
  26. <dependency>
  27. <groupId>com.google.code.gson</groupId>
  28. <artifactId>gson</artifactId>
  29. </dependency>
  30. <!-- end of json -->
  31. <!-- util -->
  32. <dependency>
  33. <groupId>com.google.guava</groupId>
  34. <artifactId>guava</artifactId>
  35. </dependency>
  36. <!-- end of util -->
  37. <!-- log -->
  38. <dependency>
  39. <groupId>org.slf4j</groupId>
  40. <artifactId>slf4j-api</artifactId>
  41. </dependency>
  42. <!-- end of log -->
  43. </dependencies>
  44. </project>