调整pom文件, 将组件提取到对应的目录下。

This commit is contained in:
terrfly 2021-07-21 15:48:04 +08:00
parent 63bbef99f5
commit e1f4d6e6cf
25 changed files with 175 additions and 21 deletions

View File

@ -96,7 +96,7 @@ isys:
file-private-path: ${isys.oss.file-root-path}/private #私有化本地访问不允许url方式公共读取 ( 一般配合root-path参数进行设置需以/ 开头, 无需以‘/’结尾 )
# [local]: 本地存储所有的文件将存在放本地可通过nfs, rsync工具实现多机共享
# [aliyun-oss]: 将文件统一上传到阿里云oss服务器; 注意需调整jeepay-oss/pom.xml中的aliyun-sdk-oss组件依赖方式
# [aliyun-oss]: 将文件统一上传到阿里云oss服务器; 注意需调整jeepay-components-oss/pom.xml中的aliyun-sdk-oss组件依赖方式
service-type: local
# 阿里云OSS服务配置信息

View File

@ -109,7 +109,7 @@ isys:
file-private-path: ${isys.oss.file-root-path}/private #私有化本地访问不允许url方式公共读取 ( 一般配合root-path参数进行设置需以/ 开头, 无需以‘/’结尾 )
# [local]: 本地存储所有的文件将存在放本地可通过nfs, rsync工具实现多机共享
# [aliyun-oss]: 将文件统一上传到阿里云oss服务器; 注意需调整jeepay-oss/pom.xml中的aliyun-sdk-oss组件依赖方式
# [aliyun-oss]: 将文件统一上传到阿里云oss服务器; 注意需调整jeepay-components-oss/pom.xml中的aliyun-sdk-oss组件依赖方式
service-type: local
# 阿里云OSS服务配置信息

View File

@ -109,7 +109,7 @@ isys:
file-private-path: ${isys.oss.file-root-path}/private #私有化本地访问不允许url方式公共读取 ( 一般配合root-path参数进行设置需以/ 开头, 无需以‘/’结尾 )
# [local]: 本地存储所有的文件将存在放本地可通过nfs, rsync工具实现多机共享
# [aliyun-oss]: 将文件统一上传到阿里云oss服务器; 注意需调整jeepay-oss/pom.xml中的aliyun-sdk-oss组件依赖方式
# [aliyun-oss]: 将文件统一上传到阿里云oss服务器; 注意需调整jeepay-components-oss/pom.xml中的aliyun-sdk-oss组件依赖方式
service-type: local
# 阿里云OSS服务配置信息

View File

@ -107,7 +107,7 @@ isys:
file-private-path: ${isys.oss.file-root-path}/private #私有化本地访问不允许url方式公共读取 ( 一般配合root-path参数进行设置需以/ 开头, 无需以‘/’结尾 )
# [local]: 本地存储所有的文件将存在放本地可通过nfs, rsync工具实现多机共享
# [aliyun-oss]: 将文件统一上传到阿里云oss服务器; 注意需调整jeepay-oss/pom.xml中的aliyun-sdk-oss组件依赖方式
# [aliyun-oss]: 将文件统一上传到阿里云oss服务器; 注意需调整jeepay-components-oss/pom.xml中的aliyun-sdk-oss组件依赖方式
service-type: local
# 阿里云OSS服务配置信息

View File

@ -0,0 +1,98 @@
<?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> <!-- POM模型版本 -->
<groupId>com.jeequan</groupId> <!-- 组织名, 类似于包名 -->
<artifactId>jeepay-components-mq</artifactId> <!-- 项目名称 -->
<packaging>jar</packaging> <!-- 项目的最终打包类型/发布形式, 可选[jar, war, pom, maven-plugin]等 -->
<version>${isys.version}</version> <!-- 项目当前版本号 -->
<description>Jeepay计全支付系统 [jeepay-components-mq]</description> <!-- 项目描述 -->
<url>https://www.jeequan.com</url>
<parent>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-components</artifactId>
<version>Final</version>
</parent>
<!-- 项目依赖声明 -->
<dependencies>
<!-- 依赖 [spring-context] 基础包 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<scope>provided</scope>
</dependency>
<!-- 可选依赖 [spring-redis] -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<scope>provided</scope>
</dependency>
<!-- 添加 spring-webmvc 基础依赖 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<scope>provided</scope> <!-- 仅编译依赖该jar 运行时存在 -->
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope> <!-- 仅编译依赖该jar 运行时存在 -->
</dependency>
<!-- mybatis plus -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis.plus.starter.version}</version>
<scope>provided</scope>
</dependency>
<!-- JWT -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<scope>provided</scope>
</dependency>
<!-- Spring Security -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<scope>provided</scope>
</dependency>
<!-- alibaba FastJSON -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
</dependency>
<!-- commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
<includes><include>**/*.xml</include></includes><!-- maven可以将mapper.xml进行打包处理否则仅对java文件处理 -->
</resource>
</resources>
</build>
</project>

View File

@ -4,15 +4,15 @@
<modelVersion>4.0.0</modelVersion> <!-- POM模型版本 -->
<groupId>com.jeequan</groupId> <!-- 组织名, 类似于包名 -->
<artifactId>jeepay-oss</artifactId> <!-- 项目名称 -->
<artifactId>jeepay-components-oss</artifactId> <!-- 项目名称 -->
<packaging>jar</packaging> <!-- 项目的最终打包类型/发布形式, 可选[jar, war, pom, maven-plugin]等 -->
<version>${isys.version}</version> <!-- 项目当前版本号 -->
<description>Jeepay计全支付系统 [jeepay-oss]</description> <!-- 项目描述 -->
<description>Jeepay计全支付系统 [jeepay-components-oss]</description> <!-- 项目描述 -->
<url>https://www.jeequan.com</url>
<parent>
<groupId>com.jeequan</groupId>
<artifactId>jeepay</artifactId>
<artifactId>jeepay-components</artifactId>
<version>Final</version>
</parent>
@ -22,7 +22,6 @@
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-core</artifactId>
<version>${isys.version}</version>
</dependency>
<!-- 添加 spring-webmvc 基础依赖 -->

28
jeepay-components/pom.xml Normal file
View File

@ -0,0 +1,28 @@
<?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> <!-- POM模型版本 -->
<groupId>com.jeequan</groupId> <!-- 组织名, 类似于包名 -->
<artifactId>jeepay-components</artifactId> <!-- 项目名称 -->
<packaging>pom</packaging> <!-- 项目的最终打包类型/发布形式, 可选[jar, war, pom, maven-plugin]等 -->
<name>jeepay-components</name>
<version>Final</version> <!-- pom版本号/项目总版本号, 每个子项目引入的版本号必须一致。 最外层的pom.xml版本号保持不变始终为Final版本。 更新版本请更改isys.version属性 -->
<description>Jeepay计全支付系统</description> <!-- 项目描述 -->
<url>https://www.jeequan.com</url>
<parent>
<groupId>com.jeequan</groupId>
<artifactId>jeepay</artifactId>
<version>Final</version>
</parent>
<!-- 声明子项目 -->
<modules>
<module>jeepay-components-oss</module><!-- oss服务支撑 -->
<module>jeepay-components-mq</module><!-- MQ消息服务 -->
</modules>
</project>

View File

@ -22,14 +22,12 @@
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-service</artifactId>
<version>${isys.version}</version>
</dependency>
<!-- 依赖[ oss ]包 -->
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-oss</artifactId>
<version>${isys.version}</version>
<artifactId>jeepay-components-oss</artifactId>
</dependency>
<!-- 依赖 sping-boot-web -->

View File

@ -22,14 +22,12 @@
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-service</artifactId>
<version>${isys.version}</version>
</dependency>
<!-- 依赖[ oss ]包 -->
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-oss</artifactId>
<version>${isys.version}</version>
<artifactId>jeepay-components-oss</artifactId>
</dependency>
<!-- 依赖 sping-boot-web -->

View File

@ -22,14 +22,18 @@
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-service</artifactId>
<version>${isys.version}</version>
</dependency>
<!-- 依赖[ oss ]包 -->
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-oss</artifactId>
<version>${isys.version}</version>
<artifactId>jeepay-components-oss</artifactId>
</dependency>
<!-- 依赖[ oss ]包 -->
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-components-mq</artifactId>
</dependency>
<!-- 依赖 sping-boot-web -->

View File

@ -22,7 +22,6 @@
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-core</artifactId>
<version>${isys.version}</version>
</dependency>
<!-- MySql 数据库连接包 -->

36
pom.xml
View File

@ -25,19 +25,21 @@
<module>jeepay-core</module> <!-- 基础函数, 包含工具类等 -->
<module>jeepay-service</module> <!-- db service等 -->
<module>jeepay-oss</module> <!-- oss服务支撑 -->
<module>jeepay-manager</module> <!-- 运营平台管理端 -->
<module>jeepay-merchant</module> <!-- 商户平台管理端 -->
<module>jeepay-payment</module> <!-- 支付统一网关 -->
<module>jeepay-components</module> <!-- 组件包 -->
</modules>
<!-- 配置属性声明, 支持自定义参数 -->
<properties>
<isys.version>1.4.0</isys.version> <!-- 指定当前[项目]版本号 -->
<java.version>1.8</java.version> <!-- 指定java版本号 -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- 项目构建输出编码 -->
<isys.version>1.4.0</isys.version> <!-- 指定当前[项目]版本号 -->
<!-- 其他工具包 -->
<jeepay.sdk.java.version>1.1.0</jeepay.sdk.java.version>
@ -56,6 +58,34 @@
<dependencyManagement>
<dependencies>
<!-- 依赖 [ core ]包。 -->
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-core</artifactId>
<version>${isys.version}</version>
</dependency>
<!-- 依赖[ service ]包, 会自动传递依赖[ core ]包。 -->
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-service</artifactId>
<version>${isys.version}</version>
</dependency>
<!-- 依赖[ oss ]包 -->
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-components-oss</artifactId>
<version>${isys.version}</version>
</dependency>
<!-- 依赖[ oss ]包 -->
<dependency>
<groupId>com.jeequan</groupId>
<artifactId>jeepay-components-mq</artifactId>
<version>${isys.version}</version>
</dependency>
<!-- jeepay sdk 支付工具包 -->
<dependency>
<groupId>com.jeequan</groupId>