120 lines
3.8 KiB
XML
120 lines
3.8 KiB
XML
<?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>com.oneone.cloud</groupId>
|
|
<artifactId>oneone-upms</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>oneone-upms-boot</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>oneone-upms-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>common-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>common-biz</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>common-log</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>common-redis</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>common-mybatis-plus</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Registry 注册中心相关 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Config 配置中心相关 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>weixin-java-pay</artifactId>
|
|
</dependency>
|
|
|
|
<!--<dependency>
|
|
<groupId>com.github.binarywang</groupId>
|
|
<artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
|
|
</dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-generator</artifactId> <!-- 代码生成器,使用它解析表结构 -->
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.smallbun.screw</groupId>
|
|
<artifactId>screw-core</artifactId> <!-- 实现数据库文档 -->
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-engine-core</artifactId> <!-- 实现代码生成 -->
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.xingyuv</groupId>
|
|
<artifactId>spring-boot-starter-captcha-plus</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- 阿里云 -->
|
|
<dependency>
|
|
<groupId>com.aliyun.oss</groupId>
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<!-- 设置构建的 jar 包名 -->
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<!-- 打包 -->
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<version>${spring.boot.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal> <!-- 将引入的 jar 打入其中 -->
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|