补充提交生成二维码的依赖
This commit is contained in:
parent
afb0d32683
commit
b4725238ec
|
|
@ -225,6 +225,16 @@
|
||||||
<artifactId>weixin-java-pay</artifactId>
|
<artifactId>weixin-java-pay</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- ZXing 二维码生成 -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.zxing</groupId>
|
||||||
|
<artifactId>core</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.zxing</groupId>
|
||||||
|
<artifactId>javase</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
@ -55,6 +55,7 @@
|
||||||
<aliyun-java.version>4.5.16</aliyun-java.version>
|
<aliyun-java.version>4.5.16</aliyun-java.version>
|
||||||
|
|
||||||
<weixin.version>4.4.0</weixin.version>
|
<weixin.version>4.4.0</weixin.version>
|
||||||
|
<zxing.version>3.5.1</zxing.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<!-- 依赖声明 -->
|
<!-- 依赖声明 -->
|
||||||
|
|
@ -251,6 +252,17 @@
|
||||||
<version>${weixin.version}</version>
|
<version>${weixin.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.zxing</groupId>
|
||||||
|
<artifactId>core</artifactId>
|
||||||
|
<version>${zxing.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.zxing</groupId>
|
||||||
|
<artifactId>javase</artifactId>
|
||||||
|
<version>${zxing.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- 全局工具 -->
|
<!-- 全局工具 -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mdd</groupId>
|
<groupId>org.mdd</groupId>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue