123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?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 https://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>3.4.1</version>
- <relativePath/> <!-- lookup parent from repository -->
- </parent>
- <groupId>org.thyy.business</groupId>
- <artifactId>thyy-business</artifactId>
- <version>0.0.1</version>
- <name>thyy-business</name>
- <description>thyy-business</description>
- <packaging>pom</packaging>
- <properties>
- <java.version>21</java.version>
- <thyy-utils>0.0.6</thyy-utils>
- <thyy-socket>0.0.8</thyy-socket>
- <thyy-archive>0.1.1</thyy-archive>
- <thyy-haikang>0.0.5</thyy-haikang>
- <thyy-emr-query>1.5.1</thyy-emr-query>
- <thyy-thirdpart-api>0.0.1</thyy-thirdpart-api>
- <thyy-scheduled>0.0.2</thyy-scheduled>
- <thyy-plugins>0.0.1</thyy-plugins>
- <thyy-hospitalized>0.0.1</thyy-hospitalized>
- <thyy-medinsur>0.0.1</thyy-medinsur>
- <!-- plugins -->
- <thyy-gateway>0.0.1</thyy-gateway>
- </properties>
- <modules>
- <module>thyy-archive</module>
- <module>thyy-utils</module>
- <module>thyy-socket</module>
- <module>thyy-haikang</module>
- <module>thyy-emr-query</module>
- <module>thyy-thirdpart-api</module>
- <module>thyy-scheduled</module>
- <module>thyy-plugins</module>
- <module>thyy-medinsur</module>
- </modules>
- <dependencies>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.8.34</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-validation</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba.fastjson2</groupId>
- <artifactId>fastjson2</artifactId>
- <version>2.0.52</version>
- </dependency>
- <dependency>
- <groupId>com.github.xingfudeshi</groupId>
- <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
- <version>4.6.0</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-actuator</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- <version>1.1.20</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.sqlserver</groupId>
- <artifactId>mssql-jdbc</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
- </dependency>
- </dependencies>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.thyy.business</groupId>
- <artifactId>thyy-utils</artifactId>
- <version>${thyy-utils}</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.sqlserver</groupId>
- <artifactId>mssql-jdbc</artifactId>
- <version>8.2.2.jre8</version>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
- <version>3.5.9</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|