ishop-merchant
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>online.skyopen</groupId>
<artifactId>ishop-merchant</artifactId>
<version>3.2.0</version>
</dependency><?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>iplatform-3</artifactId>
<groupId>online.skyopen</groupId>
<!-- <version>3.1.6</version>-->
<version>3.2.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>ishop-merchant</artifactId>
<name>ishop-merchant</name>
<packaging>jar</packaging>
<properties>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!-- 提供平台基础环境,2023-06-01 -->
<dependency>
<groupId>online.skyopen</groupId>
<artifactId>iplatform-base</artifactId>
<!-- <scope>provided</scope>-->
</dependency>
<dependency>
<groupId>online.skyopen</groupId>
<artifactId>ishop-model-pojo</artifactId>
</dependency>
<!-- 提供Redis支持,由业务子工程决定是否依赖, 2022/09/20 -->
<dependency>
<groupId>online.skyopen</groupId>
<artifactId>walker-support-redis</artifactId>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>online.skyopen</groupId>
<artifactId>walker-cache</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 微信支付需要对象转xml,使用jackson库,2023-08-10 -->
<!-- <dependency>-->
<!-- <groupId>com.fasterxml.jackson.dataformat</groupId>-->
<!-- <artifactId>jackson-dataformat-xml</artifactId>-->
<!-- </dependency>-->
<!--
支付模块集成测试,2023-02-25
目前为第一种方式:集成到系统中
-->
<dependency>
<groupId>online.skyopen</groupId>
<artifactId>iplatform-pay-server</artifactId>
</dependency>
<!-- 由业务显式引入支付插件'微信v2支付模块',不引入不会加载该模块。2023-03-01 -->
<dependency>
<groupId>online.skyopen</groupId>
<artifactId>walker-pay-support-wechat</artifactId>
<version>${walker-dependencies.version}</version>
</dependency>
</dependencies>
</project>