pom.xml 4.9 KB

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