- 重命名目录: openhis-server-new → healthlink-his-server - 重命名目录: openhis-ui-vue3 → healthlink-his-ui - 重命名Java类: OpenHisApplication → HealthLinkHisApplication - 重命名Java类: OpenHisMiniApp → HealthLinkHisMiniApp - 重命名组件目录: OpenHis → HealthLinkHis - 重命名样式文件: openhis.scss → healthlink-his.scss - 重命名配置: nginx-openhis.conf → nginx-healthlink-his.conf - 更新所有源码引用 (0个残留) - 更新所有文档/脚本/配置中的引用
431 lines
16 KiB
XML
Executable File
431 lines
16 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>4.0.6</version>
|
|
<relativePath />
|
|
</parent>
|
|
|
|
<groupId>com.healthlink.his</groupId>
|
|
<artifactId>healthlink-his-server</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>healthlink-his-server</name>
|
|
<description>开放医疗管理系统</description>
|
|
|
|
<properties>
|
|
<healthlink-his.version>0.0.1-SNAPSHOT</healthlink-his.version>
|
|
<core.version>0.0.1-SNAPSHOT</core.version>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
<java.version>25</java.version>
|
|
<maven-compiler-plugin.version>3.15.0</maven-compiler-plugin.version>
|
|
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
|
|
<druid.version>1.2.28</druid.version>
|
|
<bitwalker.version>1.21</bitwalker.version>
|
|
<springdoc.version>2.8.6</springdoc.version>
|
|
<kaptcha.version>2.3.3</kaptcha.version>
|
|
<pagehelper.boot.version>2.1.1</pagehelper.boot.version>
|
|
<oshi.version>6.10.0</oshi.version>
|
|
<commons.io.version>2.21.0</commons.io.version>
|
|
<poi.version>4.1.2</poi.version>
|
|
<velocity.version>2.3</velocity.version>
|
|
<jwt.version>0.12.6</jwt.version>
|
|
<!-- override dependency version -->
|
|
<lombok.version>1.18.38</lombok.version> <!-- 替换为 -->
|
|
<mybatis-plus.version>3.5.16</mybatis-plus.version>
|
|
<flowable.version>7.1.0</flowable.version>
|
|
<postgresql.version>42.7.10</postgresql.version>
|
|
<aviator.version>5.3.3</aviator.version>
|
|
<httpclient5.version>5.6.1</httpclient5.version>
|
|
<fastjson2.version>2.0.61</fastjson2.version>
|
|
<pinyin4j.version>2.5.1</pinyin4j.version>
|
|
<liteflow-spring-boot-starter.version>2.12.4.1</liteflow-spring-boot-starter.version>
|
|
<hutool-all.version>5.8.36</hutool-all.version>
|
|
<bcprov-jdk18on.version>1.80</bcprov-jdk18on.version>
|
|
<kernel.version>7.1.2</kernel.version>
|
|
<itextpdf.version>5.5.13.4</itextpdf.version>
|
|
<itext-asian.version>5.2.0</itext-asian.version>
|
|
<mysql-connector-j.version>9.4.0</mysql-connector-j.version>
|
|
<jsr250.version>1.3.2</jsr250.version>
|
|
<jsqlparser.version>5.2</jsqlparser.version>
|
|
</properties>
|
|
|
|
<!-- 依赖声明 -->
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.mysql</groupId>
|
|
<artifactId>mysql-connector-j</artifactId>
|
|
<version>${mysql-connector-j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- pdf依赖-->
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itextpdf</artifactId>
|
|
<version>${itextpdf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>itext-asian</artifactId>
|
|
<version>${itext-asian.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>${hutool-all.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
|
<version>${bcprov-jdk18on.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.itextpdf</groupId>
|
|
<artifactId>kernel</artifactId>
|
|
<version>${kernel.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!-- CORE-->
|
|
<dependency>
|
|
<groupId>com.core</groupId>
|
|
<artifactId>core-admin</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
<!-- liteflow-->
|
|
<dependency>
|
|
<groupId>com.yomahub</groupId>
|
|
<artifactId>liteflow-spring-boot-starter</artifactId>
|
|
<version>${liteflow-spring-boot-starter.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 中文汉字转换为首字母拼音包 -->
|
|
<dependency>
|
|
<groupId>com.belerweb</groupId>
|
|
<artifactId>pinyin4j</artifactId>
|
|
<version>${pinyin4j.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
<version>${fastjson2.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson2.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<!--el表达式计算-->
|
|
<dependency>
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
<artifactId>aviator</artifactId>
|
|
<version>${aviator.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 小程序应用 -->
|
|
<dependency>
|
|
<groupId>com.healthlink.his</groupId>
|
|
<artifactId>healthlink-his-miniapp</artifactId>
|
|
<version>${healthlink-his.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 应用 -->
|
|
<dependency>
|
|
<groupId>com.healthlink.his</groupId>
|
|
<artifactId>healthlink-his-application</artifactId>
|
|
<version>${healthlink-his.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 领域 -->
|
|
<dependency>
|
|
<groupId>com.healthlink.his</groupId>
|
|
<artifactId>healthlink-his-domain</artifactId>
|
|
<version>${healthlink-his.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 共通 -->
|
|
<dependency>
|
|
<groupId>com.healthlink.his</groupId>
|
|
<artifactId>healthlink-his-common</artifactId>
|
|
<version>${healthlink-his.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 定时任务-->
|
|
<dependency>
|
|
<groupId>com.core</groupId>
|
|
<artifactId>core-quartz</artifactId>
|
|
<version>${core.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 代码生成-->
|
|
<dependency>
|
|
<groupId>com.core</groupId>
|
|
<artifactId>core-generator</artifactId>
|
|
<version>${core.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 核心模块-->
|
|
<dependency>
|
|
<groupId>com.core</groupId>
|
|
<artifactId>core-framework</artifactId>
|
|
<version>${core.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 系统模块-->
|
|
<dependency>
|
|
<groupId>com.core</groupId>
|
|
<artifactId>core-system</artifactId>
|
|
<version>${core.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.core</groupId>
|
|
<artifactId>core-common</artifactId>
|
|
<version>${core.version}</version>
|
|
</dependency>
|
|
|
|
<!-- flowable工作流-->
|
|
<dependency>
|
|
<groupId>com.core</groupId>
|
|
<artifactId>core-flowable</artifactId>
|
|
<version>${core.version}</version>
|
|
</dependency>
|
|
|
|
<!-- mybatis-plus 增强CRUD -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
<version>${mybatis-plus.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-reflect</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- mybatis-plus-boot-starter: 覆盖旧版本避免 kotlin-reflect 冲突 -->
|
|
<dependency>
|
|
<groupId>com.baomidou</groupId>
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
<version>${mybatis-plus.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 阿里数据库连接池 -->
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>druid-spring-boot-3-starter</artifactId>
|
|
<version>${druid.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
|
<dependency>
|
|
<groupId>eu.bitwalker</groupId>
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
<version>${bitwalker.version}</version>
|
|
</dependency>
|
|
|
|
<!-- pagehelper 分页插件 -->
|
|
<dependency>
|
|
<groupId>com.github.pagehelper</groupId>
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
<version>${pagehelper.boot.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 获取系统信息 -->
|
|
<dependency>
|
|
<groupId>com.github.oshi</groupId>
|
|
<artifactId>oshi-core</artifactId>
|
|
<version>${oshi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Swagger3依赖 -->
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
<version>${springdoc.version}</version>
|
|
</dependency>
|
|
|
|
<!-- io常用工具类 -->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons.io.version}</version>
|
|
</dependency>
|
|
|
|
<!-- excel工具 -->
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>${poi.version}</version>
|
|
</dependency>
|
|
|
|
<!-- velocity代码生成使用模板 -->
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
<version>${velocity.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Token生成与解析-->
|
|
<!-- Token生成与解析-->
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt-api</artifactId>
|
|
<version>${jwt.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt-impl</artifactId>
|
|
<version>${jwt.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
<version>${jwt.version}</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- 验证码 -->
|
|
<dependency>
|
|
<groupId>pro.fessional</groupId>
|
|
<artifactId>kaptcha</artifactId>
|
|
<version>${kaptcha.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 轻量级的业务流程引擎 -->
|
|
<dependency>
|
|
<groupId>org.flowable</groupId>
|
|
<artifactId>flowable-spring-boot-starter</artifactId>
|
|
<version>${flowable.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>${postgresql.version}</version>
|
|
</dependency>
|
|
|
|
<!-- jsr250 annotations -->
|
|
<dependency>
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
<version>${jsr250.version}</version>
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- JSQlParser - MyBatis Plus 3.5.8 使用4.5版本 -->
|
|
<dependency>
|
|
<groupId>com.github.jsqlparser</groupId>
|
|
<artifactId>jsqlparser</artifactId>
|
|
<version>${jsqlparser.version}</version>
|
|
</dependency>
|
|
<!-- JSQlParser - MyBatis Plus 3.5.9+ 需要 4.6+ -->
|
|
<dependency>
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
<artifactId>httpclient5</artifactId>
|
|
<version>${httpclient5.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<modules>
|
|
<!-- <module>healthlink-his-miniapp</module> -->
|
|
<module>healthlink-his-application</module>
|
|
<module>healthlink-his-domain</module>
|
|
<module>healthlink-his-common</module>
|
|
<module>core-admin</module>
|
|
<module>core-framework</module>
|
|
<module>core-system</module>
|
|
<module>core-quartz</module>
|
|
<module>core-generator</module>
|
|
<module>core-common</module>
|
|
<module>core-flowable</module>
|
|
<!-- <module>healthlink-his-einvoiceapp</module> -->
|
|
</modules>
|
|
<packaging>pom</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<encoding>${project.build.sourceEncoding}</encoding>
|
|
<compilerArgs>
|
|
<arg>-parameters</arg>
|
|
<arg>-Xlint:unchecked</arg>
|
|
<arg>--add-modules</arg>
|
|
<arg>java.base</arg>
|
|
</compilerArgs>
|
|
<annotationProcessorPaths>
|
|
<path>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok.version}</version>
|
|
</path>
|
|
</annotationProcessorPaths>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>public</id>
|
|
<name>aliyun nexus</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>public</id>
|
|
<name>aliyun nexus</name>
|
|
<url>https://maven.aliyun.com/repository/public</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project>
|