pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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>fjhx-cloud</artifactId>
  7. <groupId>com.fjhx</groupId>
  8. <version>3.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hx-service</artifactId>
  12. <packaging>pom</packaging>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. <bladex.version>2.8.2.RELEASE</bladex.version>
  17. <hx.version>3.2.0</hx.version>
  18. </properties>
  19. <modules>
  20. <module>syringe-management</module>
  21. <module>syringe-production</module>
  22. <module>storage</module>
  23. <module>storage-restructure</module>
  24. </modules>
  25. <dependencyManagement>
  26. <dependencies>
  27. <!-- blade -->
  28. <dependency>
  29. <groupId>org.springblade.platform</groupId>
  30. <artifactId>blade-bom</artifactId>
  31. <version>${bladex.version}</version>
  32. <type>pom</type>
  33. <scope>import</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springblade</groupId>
  37. <artifactId>blade-user-api</artifactId>
  38. <version>${bladex.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.fjhx</groupId>
  42. <artifactId>common-tool</artifactId>
  43. <version>${hx.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fjhx</groupId>
  47. <artifactId>common-client-util</artifactId>
  48. <version>${hx.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.fjhx</groupId>
  52. <artifactId>common-flow-api</artifactId>
  53. <version>${hx.version}</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.fjhx</groupId>
  57. <artifactId>library-product</artifactId>
  58. <version>${hx.version}</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.fjhx</groupId>
  62. <artifactId>syringe-management-api</artifactId>
  63. <version>${hx.version}</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.fjhx</groupId>
  67. <artifactId>syringe-production-api</artifactId>
  68. <version>${hx.version}</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.fjhx</groupId>
  72. <artifactId>storage-api</artifactId>
  73. <version>${hx.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.fjhx</groupId>
  77. <artifactId>storage-restructure-api</artifactId>
  78. <version>${hx.version}</version>
  79. </dependency>
  80. </dependencies>
  81. </dependencyManagement>
  82. <dependencies>
  83. <dependency>
  84. <groupId>com.fjhx</groupId>
  85. <artifactId>common-tool</artifactId>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <resources>
  90. <resource>
  91. <directory>src/main/resources</directory>
  92. </resource>
  93. <resource>
  94. <directory>src/main/java</directory>
  95. <includes>
  96. <include>**/*.xml</include>
  97. </includes>
  98. </resource>
  99. </resources>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. <version>2.3.1.RELEASE</version>
  105. <executions>
  106. <execution>
  107. <goals>
  108. <goal>repackage</goal>
  109. </goals>
  110. </execution>
  111. </executions>
  112. </plugin>
  113. <plugin>
  114. <groupId>com.spotify</groupId>
  115. <artifactId>dockerfile-maven-plugin</artifactId>
  116. <configuration>
  117. <skip>true</skip>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. </project>