pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>cn.org.spring.tools</groupId>
  7. <artifactId>dckj-wechat</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-tools</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.slf4j</groupId>
  15. <artifactId>slf4j-api</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.alibaba</groupId>
  19. <artifactId>fastjson</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.httpcomponents</groupId>
  23. <artifactId>httpclient</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.dom4j</groupId>
  27. <artifactId>dom4j</artifactId>
  28. <version>2.1.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.thoughtworks.xstream</groupId>
  32. <artifactId>xstream</artifactId>
  33. <version>1.4.10</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>javax.servlet</groupId>
  37. <artifactId>javax.servlet-api</artifactId>
  38. <scope>provided</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>commons-lang</groupId>
  42. <artifactId>commons-lang</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.projectlombok</groupId>
  46. <artifactId>lombok</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-codec</groupId>
  50. <artifactId>commons-codec</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.fasterxml.jackson.core</groupId>
  54. <artifactId>jackson-annotations</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.fasterxml.jackson.core</groupId>
  58. <artifactId>jackson-databind</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.codehaus.jackson</groupId>
  62. <artifactId>jackson-mapper-asl</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>joda-time</groupId>
  66. <artifactId>joda-time</artifactId>
  67. </dependency>
  68. </dependencies>
  69. </project>