pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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>cn.superdesk.libs</groupId>
  6. <artifactId>superdesk-libs</artifactId>
  7. <version>2.0.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>superdesk-libs-common2</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>cn.superdesk.libs</groupId>
  13. <artifactId>superdesk-libs-common</artifactId>
  14. <version>${project.parent.version}</version>
  15. </dependency>
  16. <dependency>
  17. <groupId>cn.superdesk.libs</groupId>
  18. <artifactId>superdesk-libs-cache</artifactId>
  19. <version>${project.parent.version}</version>
  20. <optional>true</optional>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.apache.poi</groupId>
  24. <artifactId>poi</artifactId>
  25. <version>3.15</version>
  26. <optional>true</optional>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.apache.poi</groupId>
  30. <artifactId>poi-ooxml</artifactId>
  31. <version>3.15</version>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.poi</groupId>
  36. <artifactId>poi-ooxml-schemas</artifactId>
  37. <version>3.15</version>
  38. <optional>true</optional>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.commons</groupId>
  42. <artifactId>commons-collections4</artifactId>
  43. <version>4.1</version>
  44. <optional>true</optional>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.zookeeper</groupId>
  48. <artifactId>zookeeper</artifactId>
  49. <version>3.4.9</version>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>javax.jms</groupId>
  53. <artifactId>jms</artifactId>
  54. </exclusion>
  55. <exclusion>
  56. <groupId>com.sun.jdmk</groupId>
  57. <artifactId>jmxtools</artifactId>
  58. </exclusion>
  59. <exclusion>
  60. <groupId>com.sun.jmx</groupId>
  61. <artifactId>jmxri</artifactId>
  62. </exclusion>
  63. <exclusion>
  64. <groupId>org.slf4j</groupId>
  65. <artifactId>slf4j-log4j12</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. <optional>true</optional>
  69. </dependency>
  70. <dependency>
  71. <groupId>commons-io</groupId>
  72. <artifactId>commons-io</artifactId>
  73. <version>2.6</version>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>net.sf.json-lib</groupId>
  78. <artifactId>json-lib</artifactId>
  79. <version>2.4</version>
  80. <classifier>jdk15</classifier><!--指定jdk版本-->
  81. </dependency>
  82. </dependencies>
  83. <build>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.apache.maven.plugins</groupId>
  87. <artifactId>maven-deploy-plugin</artifactId>
  88. <configuration>
  89. <skip>false</skip>
  90. </configuration>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>