pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. <parent>
  6. <artifactId>hx-common</artifactId>
  7. <groupId>com.fjhx</groupId>
  8. <version>3.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-file</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.fjhx</groupId>
  19. <artifactId>service-file-api</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>ws.schild</groupId>
  23. <artifactId>jave-all-deps</artifactId>
  24. </dependency>
  25. </dependencies>
  26. <build>
  27. <resources>
  28. <resource>
  29. <directory>src/main/resources</directory>
  30. </resource>
  31. <resource>
  32. <directory>src/main/java</directory>
  33. <includes>
  34. <include>**/*.xml</include>
  35. </includes>
  36. </resource>
  37. </resources>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. <version>2.3.12.RELEASE</version>
  43. <executions>
  44. <execution>
  45. <goals>
  46. <goal>repackage</goal>
  47. </goals>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>