pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. <dependency>
  38. <groupId>com.fjhx</groupId>
  39. <artifactId>hx-oa</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.fjhx</groupId>
  43. <artifactId>hx-customer</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fjhx</groupId>
  47. <artifactId>hx-purchase</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. <executions>
  56. <execution>
  57. <goals>
  58. <goal>repackage</goal>
  59. </goals>
  60. </execution>
  61. </executions>
  62. </plugin>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-war-plugin</artifactId>
  66. <version>3.1.0</version>
  67. <configuration>
  68. <failOnMissingWebXml>false</failOnMissingWebXml>
  69. <warName>${project.artifactId}</warName>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. <finalName>${project.artifactId}</finalName>
  74. </build>
  75. </project>