pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.github.diamond</groupId>
  6. <artifactId>super-diamond</artifactId>
  7. <version>1.1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>super-diamond-client</artifactId>
  10. <version>1.4.0</version>
  11. <dependencies>
  12. <dependency>
  13. <groupId>commons-lang</groupId>
  14. <artifactId>commons-lang</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>commons-configuration</groupId>
  18. <artifactId>commons-configuration</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>io.netty</groupId>
  22. <artifactId>netty-all</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-context</artifactId>
  27. <scope>provided</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.google.guava</groupId>
  31. <artifactId>guava</artifactId>
  32. <version>17.0</version>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>junit</groupId>
  37. <artifactId>junit</artifactId>
  38. </dependency>
  39. <!-- slf4j -->
  40. <dependency>
  41. <groupId>ch.qos.logback</groupId>
  42. <artifactId>logback-classic</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>ch.qos.logback</groupId>
  46. <artifactId>logback-access</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.slf4j</groupId>
  50. <artifactId>jcl-over-slf4j</artifactId>
  51. </dependency>
  52. </dependencies>
  53. <distributionManagement>
  54. <repository>
  55. <id>edu-releases</id>
  56. <name>iflytek edu Releases Repository</name>
  57. <url>http://maven.iflytek.com:8081/nexus/content/repositories/edu-releases/</url>
  58. </repository>
  59. <snapshotRepository>
  60. <id>edu-snapshots</id>
  61. <name>iflytek edu Snapshots Repository</name>
  62. <url>http://maven.iflytek.com:8081/nexus/content/repositories/edu-snapshots/</url>
  63. </snapshotRepository>
  64. </distributionManagement>
  65. </project>