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