pom.xml 959 B

1234567891011121314151617181920212223242526
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>healthy-frontend-java</artifactId>
  5. <groupId>com.xxh.cloud.frontend</groupId>
  6. <version>1.0.0</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>healthy-frontend-custuser</artifactId>
  10. <properties>
  11. <maven.compiler.source>8</maven.compiler.source>
  12. <maven.compiler.target>8</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.xxh.cloud.frontend</groupId>
  18. <artifactId>healthy-frontend-common</artifactId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. </dependencies>
  22. </project>