pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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>org.jeecgframework.boot</groupId>
  7. <artifactId>jeecg-boot-parent</artifactId>
  8. <version>3.6.3</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>org.jeecgframework</groupId>
  12. <artifactId>jeewx-api</artifactId>
  13. <version>1.5.2</version>
  14. <packaging>jar</packaging>
  15. <name>jeewx-api</name>
  16. <description>第三方应用SDK——支持微信公众号、企业微信、钉钉、微信第三方平台、生活号、微博SDK</description>
  17. <licenses>
  18. <license>
  19. <name>The Apache Software License, Version 2.0</name>
  20. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  21. </license>
  22. </licenses>
  23. <scm>
  24. <connection>scm:git:https://github.com/zhangdaiscott/jeewx-api.git</connection>
  25. <developerConnection>scm:git:https://github.com/zhangdaiscott/jeewx-api.git</developerConnection>
  26. <url>https://github.com/zhangdaiscott/jeewx-api</url>
  27. </scm>
  28. <repositories>
  29. <repository>
  30. <id>aliyun</id>
  31. <name>aliyun Repository</name>
  32. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  33. <snapshots>
  34. <enabled>false</enabled>
  35. </snapshots>
  36. </repository>
  37. <repository>
  38. <id>jeecg</id>
  39. <name>jeecg Repository</name>
  40. <url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  41. <snapshots>
  42. <enabled>false</enabled>
  43. </snapshots>
  44. </repository>
  45. </repositories>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-compiler-plugin</artifactId>
  51. <configuration>
  52. <source>8</source>
  53. <target>8</target>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. <dependencies>
  59. <!-- 单元测试 -->
  60. <dependency>
  61. <groupId>junit</groupId>
  62. <artifactId>junit</artifactId>
  63. <version>${junit.version}</version>
  64. <scope>test</scope>
  65. </dependency>
  66. <!-- commons -->
  67. <dependency>
  68. <groupId>commons-codec</groupId>
  69. <artifactId>commons-codec</artifactId>
  70. <version>${commons-codec.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-io</groupId>
  74. <artifactId>commons-io</artifactId>
  75. <version>${commons-io.version}</version>
  76. </dependency>
  77. <!-- json -->
  78. <dependency>
  79. <groupId>com.alibaba</groupId>
  80. <artifactId>fastjson</artifactId>
  81. <version>${fastjson-lib.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.google.code.gson</groupId>
  85. <artifactId>gson</artifactId>
  86. <version>${gson.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>net.sf.json-lib</groupId>
  90. <artifactId>json-lib</artifactId>
  91. <version>${json-lib.version}</version>
  92. <classifier>jdk15</classifier>
  93. </dependency>
  94. <!-- slf4j -->
  95. <dependency>
  96. <groupId>org.slf4j</groupId>
  97. <artifactId>slf4j-api</artifactId>
  98. <version>${slf4j.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.slf4j</groupId>
  102. <artifactId>slf4j-log4j12</artifactId>
  103. <version>${slf4j.version}</version>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.jdom</groupId>
  108. <artifactId>jdom</artifactId>
  109. <version>${jdom.version}</version>
  110. </dependency>
  111. <!-- freemarker -->
  112. <dependency>
  113. <groupId>org.freemarker</groupId>
  114. <artifactId>freemarker</artifactId>
  115. <version>${freemarker.version}</version>
  116. </dependency>
  117. <!-- 二维码 -->
  118. <dependency>
  119. <groupId>com.google.zxing</groupId>
  120. <artifactId>javase</artifactId>
  121. <version>${zxing.version}</version>
  122. </dependency>
  123. <!-- 阿里生活号SDK-->
  124. <dependency>
  125. <groupId>com.alipay.sdk</groupId>
  126. <artifactId>alipay-sdk-java</artifactId>
  127. <version>3.1.0</version>
  128. </dependency>
  129. <!-- 百度云
  130. <dependency>
  131. <groupId>com.baidu.bcs</groupId>
  132. <artifactId>baidu-sdk</artifactId>
  133. <version>2.4</version>
  134. </dependency> -->
  135. </dependencies>
  136. </project>