pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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-api</artifactId>
  12. <packaging>pom</packaging>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. <hx.version>3.2.0</hx.version>
  17. <bladex.version>2.8.2.RELEASE</bladex.version>
  18. </properties>
  19. <modules>
  20. <module>service-file-api</module>
  21. <module>common-flow-api</module>
  22. <module>common-rocketmq-api</module>
  23. <module>service-video-api</module>
  24. <module>syringe-management-api</module>
  25. <module>syringe-production-api</module>
  26. <module>storage-api</module>
  27. <module>storage-restructure-api</module>
  28. <module>service-flow-api</module>
  29. <module>basics-api</module>
  30. </modules>
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springblade.platform</groupId>
  35. <artifactId>blade-bom</artifactId>
  36. <version>${bladex.version}</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springblade</groupId>
  42. <artifactId>blade-starter-mybatis</artifactId>
  43. <version>${bladex.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fjhx</groupId>
  47. <artifactId>common-tool</artifactId>
  48. <version>${hx.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.fjhx</groupId>
  52. <artifactId>service-file-api</artifactId>
  53. <version>${hx.version}</version>
  54. </dependency>
  55. </dependencies>
  56. </dependencyManagement>
  57. <dependencies>
  58. <dependency>
  59. <groupId>org.springblade</groupId>
  60. <artifactId>blade-starter-mybatis</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.projectlombok</groupId>
  64. <artifactId>lombok</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.fjhx</groupId>
  68. <artifactId>common-tool</artifactId>
  69. </dependency>
  70. </dependencies>
  71. </project>