12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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">
- <parent>
- <artifactId>fx</artifactId>
- <groupId>com.miaxis</groupId>
- <version>1.0.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>fx-service</artifactId>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.miaxis</groupId>
- <artifactId>fx-common</artifactId>
- </dependency>
- <!-- 核心模块-->
- <dependency>
- <groupId>com.miaxis</groupId>
- <artifactId>fx-framework</artifactId>
- </dependency>
- <!-- mpp代码生成器-->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- <version>3.4.0</version>
- </dependency>
- <!--模板引擎-->
- <dependency>
- <groupId>org.apache.velocity</groupId>
- <artifactId>velocity-engine-core</artifactId>
- <version>2.1</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/commons-httpclient/commons-httpclient -->
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>com.github.wechatpay-apiv3</groupId>
- <artifactId>wechatpay-apache-httpclient</artifactId>
- <version>0.2.1</version>
- </dependency>
- <!--谷歌二维码生成-->
- <dependency>
- <groupId>com.google.zxing</groupId>
- <artifactId>core</artifactId>
- </dependency>
- <!--hutool工具包-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- </dependency>
- </dependencies>
- </project>
|