pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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-app</artifactId>
  10. <packaging>jar</packaging>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.xxh.cloud.frontend</groupId>
  17. <artifactId>healthy-frontend-custuser</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <!-- <dependency>-->
  21. <!-- <groupId>com.xxh.cloud.frontend</groupId>-->
  22. <!-- <artifactId>healthy-frontend-mq</artifactId>-->
  23. <!-- <version>${project.version}</version>-->
  24. <!-- </dependency>-->
  25. </dependencies>
  26. <build>
  27. <finalName>healthy-frontend-1.0.0</finalName>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-maven-plugin</artifactId>
  32. <executions>
  33. <execution>
  34. <goals>
  35. <goal>repackage</goal>
  36. </goals>
  37. </execution>
  38. </executions>
  39. </plugin>
  40. <!-- <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <configuration>
  44. <source>1.8</source>
  45. <target>1.8</target>
  46. <encoding>UTF-8</encoding>
  47. <compilerArguments>
  48. <verbose />
  49. <bootclasspath>${java.home}/lib/rt.jar;${java.home}/lib/jce.jar</bootclasspath>
  50. </compilerArguments>
  51. </configuration>
  52. </plugin> -->
  53. </plugins>
  54. </build>
  55. </project>