- Maven modules: openhis-* → healthlink-his-* - Java packages: com.openhis → com.healthlink.his (3,278 files) - Configuration: context-path, DB schema, logger, package scan - Frontend: API paths /openhis/ → /healthlink-his/ (30 files) - Database: healthlink_his schema with 188 tables (copied from hisdev) - Verified: 18/18 API tests passed, 10-concurrent smoke test passed
95 lines
2.9 KiB
XML
Executable File
95 lines
2.9 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
xmlns="http://maven.apache.org/POM/4.0.0"
|
||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
<parent>
|
||
<groupId>com.healthlink.his</groupId>
|
||
<artifactId>healthlink-his-server</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<groupId>com.core</groupId>
|
||
<artifactId>core-system</artifactId>
|
||
|
||
<description>
|
||
system系统模块
|
||
</description>
|
||
|
||
<properties>
|
||
<fastjson2.version>2.0.43</fastjson2.version>
|
||
<pinyin4j.version>2.5.1</pinyin4j.version>
|
||
</properties>
|
||
|
||
<dependencies>
|
||
|
||
<!-- MyBatis-Plus 支持 -->
|
||
<dependency>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>com.baomidou</groupId>
|
||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||
</exclusion>
|
||
<exclusion>
|
||
<groupId>org.jetbrains.kotlin</groupId>
|
||
<artifactId>kotlin-reflect</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<!-- 通用工具-->
|
||
<dependency>
|
||
<groupId>com.core</groupId>
|
||
<artifactId>core-common</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
</dependency>
|
||
|
||
<!-- FastJSON2 -->
|
||
<dependency>
|
||
<groupId>com.alibaba.fastjson2</groupId>
|
||
<artifactId>fastjson2</artifactId>
|
||
<version>${fastjson2.version}</version>
|
||
</dependency>
|
||
|
||
<!-- 如果还需要FastJSON,建议移除或替换为FastJSON2 -->
|
||
<dependency>
|
||
<groupId>com.alibaba</groupId>
|
||
<artifactId>fastjson</artifactId>
|
||
<version>1.2.83</version>
|
||
</dependency>
|
||
|
||
<!-- pinyin4j -->
|
||
<dependency>
|
||
<groupId>com.belerweb</groupId>
|
||
<artifactId>pinyin4j</artifactId>
|
||
<version>${pinyin4j.version}</version>
|
||
</dependency>
|
||
|
||
|
||
<!-- postgresql -->
|
||
<dependency>
|
||
<groupId>org.postgresql</groupId>
|
||
<artifactId>postgresql</artifactId>
|
||
</dependency>
|
||
|
||
<!-- swagger 注解 -->
|
||
<dependency>
|
||
<groupId>io.swagger.core.v3</groupId>
|
||
<artifactId>swagger-annotations-jakarta</artifactId>
|
||
<version>2.2.30</version>
|
||
</dependency>
|
||
<!-- swagger 注解 -->
|
||
<dependency>
|
||
<groupId>io.swagger.core.v3</groupId>
|
||
<artifactId>swagger-annotations-jakarta</artifactId>
|
||
<version>2.2.30</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project> |