136 lines
4.4 KiB
XML
136 lines
4.4 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-pms</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>oneone-pms-boot</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>oneone-upms-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>oneone-pms-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>common-web</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>
|
|
|
|
<!-- Maven依赖 -->
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.15</version>
|
|
</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.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-openfeign-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>oneone-pms-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.oneone.cloud</groupId>
|
|
<artifactId>common-biz</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>
|