<?xml version="1.0" encoding="UTF-8"?>
|
<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/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>org.ruoyi</groupId>
|
<artifactId>ruoyi-common</artifactId>
|
<version>${revision}</version>
|
<relativePath>../pom.xml</relativePath>
|
</parent>
|
|
<artifactId>ruoyi-common-pay</artifactId>
|
|
<properties>
|
<maven.compiler.source>17</maven.compiler.source>
|
<maven.compiler.target>17</maven.compiler.target>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<zxing.version>3.3.3</zxing.version>
|
<stripe.version>22.5.1</stripe.version>
|
</properties>
|
<dependencies>
|
|
<dependency>
|
<groupId>org.ruoyi</groupId>
|
<artifactId>ruoyi-common-web</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>com.google.zxing</groupId>
|
<artifactId>core</artifactId>
|
<version>${zxing.version}</version>
|
</dependency>
|
|
</dependencies>
|
|
</project>
|