pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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-client</artifactId>
  12. <name>Apollo Client</name>
  13. <properties>
  14. <java.version>1.7</java.version>
  15. <github.path>${project.artifactId}</github.path>
  16. </properties>
  17. <dependencies>
  18. <!-- apollo -->
  19. <dependency>
  20. <groupId>com.yihu.jkzl</groupId>
  21. <artifactId>apollo-core</artifactId>
  22. </dependency>
  23. <!-- end of apollo -->
  24. <!-- guice -->
  25. <dependency>
  26. <groupId>com.google.inject</groupId>
  27. <artifactId>guice</artifactId>
  28. </dependency>
  29. <!-- end of guice -->
  30. <!-- log -->
  31. <dependency>
  32. <groupId>org.slf4j</groupId>
  33. <artifactId>slf4j-api</artifactId>
  34. </dependency>
  35. <!-- optional spring dependency -->
  36. <dependency>
  37. <groupId>org.springframework</groupId>
  38. <artifactId>spring-context</artifactId>
  39. <optional>true</optional>
  40. </dependency>
  41. <!-- optional spring boot dependency -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-autoconfigure</artifactId>
  45. <optional>true</optional>
  46. </dependency>
  47. <!-- test -->
  48. <dependency>
  49. <groupId>org.eclipse.jetty</groupId>
  50. <artifactId>jetty-server</artifactId>
  51. <scope>test</scope>
  52. </dependency>
  53. <!-- take over jcl -->
  54. <dependency>
  55. <groupId>org.slf4j</groupId>
  56. <artifactId>jcl-over-slf4j</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.logging.log4j</groupId>
  61. <artifactId>log4j-slf4j-impl</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.logging.log4j</groupId>
  66. <artifactId>log4j-core</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <!-- end of test -->
  70. </dependencies>
  71. </project>