pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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-xmhjc</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.fjhx</groupId>
  23. <artifactId>hx-common</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. <executions>
  42. <execution>
  43. <goals>
  44. <goal>repackage</goal>
  45. </goals>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-war-plugin</artifactId>
  52. <version>3.1.0</version>
  53. <configuration>
  54. <failOnMissingWebXml>false</failOnMissingWebXml>
  55. <warName>${project.artifactId}</warName>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. <!-- <finalName>${project.artifactId}</finalName>-->
  60. <finalName>hx-xmhjc-web</finalName>
  61. </build>
  62. </project>