<?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>
|
<packaging>pom</packaging>
|
<modules>
|
<module>generator</module>
|
<module>common</module>
|
<module>applet</module>
|
<module>manage</module>
|
<module>optometrist</module>
|
</modules>
|
<parent>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-parent</artifactId>
|
<version>2.7.0</version>
|
<relativePath/> <!-- lookup parent from repository -->
|
</parent>
|
<groupId>com</groupId>
|
<artifactId>eyes</artifactId>
|
<version>0.0.1-SNAPSHOT</version>
|
<name>eyes</name>
|
<description>eyes</description>
|
<properties>
|
<java.version>1.8</java.version>
|
<spring.boot.version>2.7.0</spring.boot.version>
|
<hutool.version>5.8.5</hutool.version>
|
</properties>
|
|
<!-- springboot 包管理 -->
|
<dependencyManagement>
|
<dependencies>
|
<!-- spring boot start -->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-dependencies</artifactId>
|
<version>${spring.boot.version}</version>
|
<type>pom</type>
|
<scope>import</scope>
|
</dependency>
|
<dependency>
|
<groupId>cn.hutool</groupId>
|
<artifactId>hutool-all</artifactId>
|
<version>${hutool.version}</version>
|
</dependency>
|
<!--spring boot end-->
|
</dependencies>
|
</dependencyManagement>
|
|
<dependencies>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-test</artifactId>
|
<scope>test</scope>
|
</dependency>
|
|
|
</dependencies>
|
|
</project>
|