| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 | <?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>kmall-haikong</artifactId>        <groupId>com.kmall</groupId>        <version>3.1.0</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>kmall-manager</artifactId>    <description>通用业务管理</description>    <dependencies>        <dependency>            <groupId>com.kmall</groupId>            <artifactId>kmall-common</artifactId>            <version>${kmall-version}</version>        </dependency>        <dependency>            <groupId>com.alipay</groupId>            <artifactId>com-alipay</artifactId>            <version>1.0</version>            <scope>system</scope>            <systemPath>${project.basedir}/src/main/resources/lib/alipay-sdk-java-3.3.0.jar</systemPath>        </dependency>        <dependency>            <groupId>com.alipay.demo</groupId>            <artifactId>com-alipay-demo</artifactId>            <version>1.0</version>            <scope>system</scope>            <systemPath>${project.basedir}/src/main/resources/lib/alipay-trade-sdk-20161215.jar</systemPath>        </dependency>        <dependency>            <groupId>com.alipay</groupId>            <artifactId>commons-codec</artifactId>            <version>1.0</version>            <scope>system</scope>            <systemPath>${project.basedir}/src/main/resources/lib/commons-codec-1.10.jar</systemPath>        </dependency>        <dependency>            <groupId>com.alipay.demo</groupId>            <artifactId>commons-configuration</artifactId>            <version>1.0</version>            <scope>system</scope>            <systemPath>${project.basedir}/src/main/resources/lib/commons-configuration-1.10.jar</systemPath>        </dependency>    </dependencies>    <build>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>                <configuration>                    <includeSystemScope>true</includeSystemScope>                </configuration>            </plugin>        </plugins>    </build></project>
 |