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

48 lines
1.7 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>cn.health.service</groupId>
<artifactId>health-parent</artifactId>
<version>1.0.2</version>
</parent>
<artifactId>health_his</artifactId>
<description>his调用</description>
<!-- <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId>
<configuration> <source>1.8</source> <target>1.8</target> </configuration>
</plugin> </plugins> </build> -->
<dependencies>
<!-- 公共模块 -->
<!-- <dependency>
<groupId>cn.health.service</groupId>
<artifactId>health_common</artifactId>
</dependency>
-->
<!--HIS实体模块 -->
<dependency>
<groupId>cn.health.service</groupId>
<artifactId>health_hosp</artifactId>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.7.12</version>
</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>