pom.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.yihu.jkzl</groupId>
  6. <artifactId>apollo</artifactId>
  7. <version>1.1.0-RELEASE</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. <!-- json -->
  20. <dependency>
  21. <groupId>com.google.code.gson</groupId>
  22. <artifactId>gson</artifactId>
  23. </dependency>
  24. <!-- end of json -->
  25. <!-- util -->
  26. <dependency>
  27. <groupId>com.google.guava</groupId>
  28. <artifactId>guava</artifactId>
  29. </dependency>
  30. <!-- end of util -->
  31. <!-- log -->
  32. <dependency>
  33. <groupId>org.slf4j</groupId>
  34. <artifactId>slf4j-api</artifactId>
  35. </dependency>
  36. <!-- end of log -->
  37. <!-- test -->
  38. <dependency>
  39. <groupId>org.eclipse.jetty</groupId>
  40. <artifactId>jetty-server</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.logging.log4j</groupId>
  45. <artifactId>log4j-slf4j-impl</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.logging.log4j</groupId>
  50. <artifactId>log4j-core</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <!-- end of test -->
  54. </dependencies>
  55. </project>