pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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>com.fjhx</groupId>
  8. <artifactId>bytesailing</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <artifactId>hx-admin</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.fjhx</groupId>
  15. <artifactId>hx-base</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.fjhx</groupId>
  19. <artifactId>hx-item</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fjhx</groupId>
  23. <artifactId>hx-supply</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.fjhx</groupId>
  27. <artifactId>hx-iot</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.fjhx</groupId>
  31. <artifactId>hx-wms</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.fjhx</groupId>
  35. <artifactId>hx-mes</artifactId>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-maven-plugin</artifactId>
  43. <executions>
  44. <execution>
  45. <goals>
  46. <goal>repackage</goal>
  47. </goals>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-war-plugin</artifactId>
  54. <version>3.1.0</version>
  55. <configuration>
  56. <failOnMissingWebXml>false</failOnMissingWebXml>
  57. <warName>${project.artifactId}</warName>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. <finalName>${project.artifactId}</finalName>
  62. </build>
  63. </project>