80 lines
2.8 KiB
XML
80 lines
2.8 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">
|
|
<parent>
|
|
<artifactId>nursing-unit-system</artifactId>
|
|
<groupId>com.nursingunit.boot</groupId>
|
|
<version>2.0.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>nu-system-start</artifactId>
|
|
|
|
<dependencies>
|
|
<!-- COMMON 通用工具模块 -->
|
|
<dependency>
|
|
<groupId>com.nursingunit.boot</groupId>
|
|
<artifactId>nursing-unit-common</artifactId>
|
|
<version>${nursingunit.version}</version>
|
|
</dependency>
|
|
<!-- SYSTEM 系统管理模块 -->
|
|
<dependency>
|
|
<groupId>com.nursingunit.boot</groupId>
|
|
<artifactId>nu-system-biz</artifactId>
|
|
<version>${nursingunit.version}</version>
|
|
</dependency>
|
|
<!-- DEMO 示例模块 -->
|
|
<dependency>
|
|
<groupId>com.nursingunit.boot</groupId>
|
|
<artifactId>nursing-unit-demo</artifactId>
|
|
<version>${nursingunit.version}</version>
|
|
</dependency>
|
|
<!-- 进销存 模块 -->
|
|
<dependency>
|
|
<groupId>com.nursingunit.boot</groupId>
|
|
<artifactId>nu-invoicing-biz</artifactId>
|
|
<version>${nursingunit.version}</version>
|
|
</dependency>
|
|
<!-- IOT 摄像头 模块 -->
|
|
<dependency>
|
|
<groupId>com.nursingunit.boot</groupId>
|
|
<artifactId>nu-iot-biz</artifactId>
|
|
<version>${nursingunit.version}</version>
|
|
</dependency>
|
|
<!-- nu 基础模块 -->
|
|
<dependency>
|
|
<groupId>com.nursingunit.boot</groupId>
|
|
<artifactId>nu-admin-biz</artifactId>
|
|
<version>${nursingunit.version}</version>
|
|
</dependency>
|
|
<!-- 服务指令 模块 -->
|
|
<dependency>
|
|
<groupId>com.nursingunit.boot</groupId>
|
|
<artifactId>nu-services-biz</artifactId>
|
|
<version>${nursingunit.version}</version>
|
|
</dependency>
|
|
<!-- 接口 模块 -->
|
|
<dependency>
|
|
<groupId>com.nursingunit.boot</groupId>
|
|
<artifactId>nursing-unit-api</artifactId>
|
|
<version>${nursingunit.version}</version>
|
|
</dependency>
|
|
<!-- flyway 数据库自动升级 -->
|
|
<dependency>
|
|
<groupId>org.flywaydb</groupId>
|
|
<artifactId>flyway-core</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|