pom.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.7.5</version>
  10. </parent>
  11. <groupId>com.xxh.cloud.frontend</groupId>
  12. <artifactId>healthy-frontend-java</artifactId>
  13. <version>1.0.0</version>
  14. <packaging>pom</packaging>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <spring-boot-version>2.1.3.RELEASE</spring-boot-version>
  18. <fastjson.version>1.2.73</fastjson.version>
  19. <hutool.version>5.4.1</hutool.version>
  20. <swagger.version>2.9.2</swagger.version>
  21. <swagger2markup.version>1.2.0</swagger2markup.version>
  22. <swagger2bootstrap2ui.version>1.9.6</swagger2bootstrap2ui.version>
  23. </properties>
  24. <modules>
  25. <module>healthy-frontend-app</module>
  26. <module>healthy-frontend-custuser</module>
  27. <module>healthy-frontend-common</module>
  28. <module>healthy-frontend-mq</module>
  29. </modules>
  30. </project>