pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. <groupId>cn.feishu.sdk</groupId>
  5. <artifactId>feishu-sdk</artifactId>
  6. <version>2.0.2</version>
  7. <name>feishu-sdk</name>
  8. <!-- FIXME change it to the project's website -->
  9. <url>http://www.example.com</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>1.7</maven.compiler.source>
  13. <maven.compiler.target>1.7</maven.compiler.target>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>commons-io</groupId>
  18. <artifactId>commons-io</artifactId>
  19. <version>2.6</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>commons-lang</groupId>
  23. <artifactId>commons-lang</artifactId>
  24. <version>2.6</version>
  25. </dependency>
  26. <!-- <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. </dependency>-->
  30. <dependency>
  31. <groupId>com.alibaba</groupId>
  32. <artifactId>fastjson</artifactId>
  33. <version>1.2.56</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.httpcomponents</groupId>
  37. <artifactId>httpclient</artifactId>
  38. <version>4.5.9</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.httpcomponents</groupId>
  42. <artifactId>httpcore</artifactId>
  43. <version>4.4</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>cn.hutool</groupId>
  47. <artifactId>hutool-all</artifactId>
  48. <version>4.5.11</version>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  53. <plugins>
  54. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  55. <plugin>
  56. <artifactId>maven-clean-plugin</artifactId>
  57. <version>3.1.0</version>
  58. </plugin>
  59. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  60. <plugin>
  61. <artifactId>maven-resources-plugin</artifactId>
  62. <version>3.0.2</version>
  63. </plugin>
  64. <plugin>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.8.0</version>
  67. </plugin>
  68. <plugin>
  69. <artifactId>maven-surefire-plugin</artifactId>
  70. <version>2.22.1</version>
  71. </plugin>
  72. <plugin>
  73. <artifactId>maven-jar-plugin</artifactId>
  74. <version>3.0.2</version>
  75. </plugin>
  76. <plugin>
  77. <artifactId>maven-install-plugin</artifactId>
  78. <version>2.5.2</version>
  79. </plugin>
  80. <plugin>
  81. <artifactId>maven-deploy-plugin</artifactId>
  82. <version>2.8.2</version>
  83. </plugin>
  84. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  85. <plugin>
  86. <artifactId>maven-site-plugin</artifactId>
  87. <version>3.7.1</version>
  88. </plugin>
  89. <plugin>
  90. <artifactId>maven-project-info-reports-plugin</artifactId>
  91. <version>3.0.0</version>
  92. </plugin>
  93. </plugins>
  94. </pluginManagement>
  95. </build>
  96. </project>