12345678910111213141516171819202122232425262728293031323334 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.7.5</version>
- </parent>
- <groupId>com.xxh.cloud.frontend</groupId>
- <artifactId>healthy-frontend-java</artifactId>
- <version>1.0.0</version>
- <packaging>pom</packaging>
- <properties>
- <java.version>1.8</java.version>
- <spring-boot-version>2.1.3.RELEASE</spring-boot-version>
- <fastjson.version>1.2.73</fastjson.version>
- <hutool.version>5.4.1</hutool.version>
- <swagger.version>2.9.2</swagger.version>
- <swagger2markup.version>1.2.0</swagger2markup.version>
- <swagger2bootstrap2ui.version>1.9.6</swagger2bootstrap2ui.version>
- </properties>
- <modules>
- <module>healthy-frontend-app</module>
- <module>healthy-frontend-custuser</module>
- <module>healthy-frontend-common</module>
- <module>healthy-frontend-mq</module>
- </modules>
- </project>
|