pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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-common</artifactId>
  10. <description>基础工具类支持</description>
  11. <dependencies>
  12. <dependency>
  13. <groupId>org.apache.commons</groupId>
  14. <artifactId>commons-lang3</artifactId>
  15. <version>3.7</version><!-- 3.4 -->
  16. </dependency>
  17. <dependency>
  18. <groupId>commons-beanutils</groupId>
  19. <artifactId>commons-beanutils</artifactId>
  20. <version>1.9.3</version><!-- 1.8.3 -->
  21. </dependency>
  22. <dependency>
  23. <groupId>com.fasterxml.jackson.core</groupId>
  24. <artifactId>jackson-databind</artifactId>
  25. <version>2.13.3</version>
  26. </dependency>
  27. <!-- <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>fastjson</artifactId>
  30. <version>1.2.51</version>
  31. <optional>true</optional>
  32. </dependency> -->
  33. <dependency>
  34. <groupId>com.esotericsoftware.kryo</groupId>
  35. <artifactId>kryo</artifactId>
  36. <version>2.24.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>de.ruedigermoeller</groupId>
  40. <artifactId>fst</artifactId>
  41. <version>1.55</version>
  42. <optional>true</optional>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.bouncycastle</groupId>
  46. <artifactId>bcprov-jdk15on</artifactId>
  47. <version>1.60</version>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-deploy-plugin</artifactId>
  55. <configuration>
  56. <skip>false</skip>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>