health_parent/health_framework/pom.xml
2024-07-03 20:01:25 +08:00

143 lines
5.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="UTF-8"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.health.service</groupId>
<artifactId>health-parent</artifactId>
<version>1.0.2</version>
</parent>
<artifactId>health_framework</artifactId>
<name>health_framework</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.codehaus.xfire</groupId>-->
<!-- <artifactId>bcprov-jdk15</artifactId>-->
<!-- </dependency>-->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</dependency>
<dependency>
<groupId>com.alipay.sdk</groupId>
<artifactId>alipay-sdk-java</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.github.wechatpay-apiv3</groupId>-->
<!-- <artifactId>wechatpay-apache-httpclient</artifactId>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>commons-configuration</groupId>-->
<!-- <artifactId>commons-configuration</artifactId>-->
<!-- </dependency>-->
<!-- his调用模块 -->
<dependency>
<groupId>cn.health.service</groupId>
<artifactId>health_his</artifactId>
</dependency>
<!-- 微信支付模块 -->
<!-- <dependency>-->
<!-- <groupId>cn.health.service</groupId>-->
<!-- <artifactId>health_wechat_pay</artifactId>-->
<!-- </dependency>-->
<!--Token生成与解析 支付宝使用 -->
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
<version>0.9.1</version>
</dependency>
<dependency>
<groupId>com.tencent</groupId>
<artifactId>open-platform-sdk-1.6-jdk</artifactId>
</dependency>
<!--工行jar包 -->
<dependency>
<groupId>icbc-api-sdk-cop</groupId>
<artifactId>icbc-api-sdk-cop</artifactId>
<version>1.0</version>
<!--system类似provided需要显式提供依赖的jar以后Maven就不会在Repository中查找它-->
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/jar/icbc-api-sdk-cop.jar</systemPath>
</dependency>
<dependency>
<groupId>icbc-api-sdk-cop-io</groupId>
<artifactId>icbc-api-sdk-cop-io</artifactId>
<version>1.0</version>
<!--system类似provided需要显式提供依赖的jar以后Maven就不会在Repository中查找它-->
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/jar/icbc-api-sdk-cop-io.jar</systemPath>
</dependency>
<dependency>
<groupId>hsm-software-share</groupId>
<artifactId>hsm-software-share</artifactId>
<version>1.0.5</version>
<!--system类似provided需要显式提供依赖的jar以后Maven就不会在Repository中查找它-->
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/jar/hsm-software-share-1.0.5.jar</systemPath>
</dependency>
<dependency>
<groupId>icbc-ca.ja</groupId>
<artifactId>icbc-ca.ja</artifactId>
<version>1.0</version>
<!--system类似provided需要显式提供依赖的jar以后Maven就不会在Repository中查找它-->
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/jar/icbc-ca.jar</systemPath>
</dependency>
<dependency>
<groupId>InfosecCrypto_Java1_02_JDK14</groupId>
<artifactId>InfosecCrypto_Java1_02_JDK14</artifactId>
<version>1.0</version>
<!--system类似provided需要显式提供依赖的jar以后Maven就不会在Repository中查找它-->
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/jar/InfosecCrypto_Java1_02_JDK14+.jar</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>