<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jeecgboot-boot-applet</artifactId>
|
|
<!-- <build>-->
|
|
<!-- <plugins>-->
|
|
<!-- <plugin>-->
|
|
<!-- <groupId>org.apache.maven.plugins</groupId>-->
|
|
<!-- <artifactId>maven-compiler-plugin</artifactId>-->
|
|
<!-- <configuration>-->
|
|
<!-- <source>8</source>-->
|
|
<!-- <target>8</target>-->
|
|
<!-- </configuration>-->
|
|
<!-- </plugin>-->
|
|
<!-- </plugins>-->
|
|
<!-- </build>-->
|
|
|
|
<parent>
|
|
<artifactId>jeecg-boot-module</artifactId>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<version>3.8.1</version>
|
|
</parent>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>aliyun</id>
|
|
<name>aliyun Repository</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>jeecg</id>
|
|
<name>jeecg Repository</name>
|
|
<url>https://maven.jeecg.org/nexus/content/repositories/jeecg</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>jeecg-boot-base-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
<artifactId>module-pay</artifactId>
|
|
<version>3.8.1</version>
|
|
</dependency>
|
|
|
|
<!-- zxing生成二维码 -->
|
|
<dependency>
|
|
<groupId>com.google.zxing</groupId>
|
|
<artifactId>core</artifactId>
|
|
<version>3.3.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.zxing</groupId>
|
|
<artifactId>javase</artifactId>
|
|
<version>3.3.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.tencentcloudapi</groupId>
|
|
<artifactId>tencentcloud-sdk-java-tts</artifactId>
|
|
<version>3.1.1305</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|