pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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-video</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>common-client-util</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fjhx</groupId>
  23. <artifactId>common-tool</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>ws.schild</groupId>
  27. <artifactId>jave-all-deps</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fjhx</groupId>
  31. <artifactId>service-video-api</artifactId>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <resources>
  36. <resource>
  37. <directory>src/main/resources</directory>
  38. </resource>
  39. <resource>
  40. <directory>src/main/java</directory>
  41. <includes>
  42. <include>**/*.xml</include>
  43. </includes>
  44. </resource>
  45. </resources>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. <version>2.3.12.RELEASE</version>
  51. <executions>
  52. <execution>
  53. <goals>
  54. <goal>repackage</goal>
  55. </goals>
  56. </execution>
  57. </executions>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>