pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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-common</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>code-generator</module>
  15. <module>common-client-util</module>
  16. <module>service-file</module>
  17. <module>common-tool</module>
  18. <module>service-video</module>
  19. <module>service-flow</module>
  20. <module>library-product</module>
  21. <module>library-storage</module>
  22. <module>library-supply</module>
  23. <module>common-websocket</module>
  24. <module>common-im</module>
  25. </modules>
  26. <properties>
  27. <maven.compiler.source>8</maven.compiler.source>
  28. <maven.compiler.target>8</maven.compiler.target>
  29. <bladex.version>3.0.1.RELEASE</bladex.version>
  30. <hx.version>3.2.0</hx.version>
  31. <hutool.version>5.8.3</hutool.version>
  32. <velocity.version>2.3</velocity.version>
  33. </properties>
  34. <dependencyManagement>
  35. <dependencies>
  36. <!-- blade -->
  37. <dependency>
  38. <groupId>org.springblade.platform</groupId>
  39. <artifactId>blade-bom</artifactId>
  40. <version>${bladex.version}</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springblade</groupId>
  46. <artifactId>blade-common</artifactId>
  47. <version>${bladex.version}</version>
  48. </dependency>
  49. <!-- hutool 工具包 -->
  50. <dependency>
  51. <groupId>cn.hutool</groupId>
  52. <artifactId>hutool-all</artifactId>
  53. <version>${hutool.version}</version>
  54. </dependency>
  55. <!-- myBatis-plus代码自动生成模板引擎 -->
  56. <dependency>
  57. <groupId>org.apache.velocity</groupId>
  58. <artifactId>velocity-engine-core</artifactId>
  59. <version>${velocity.version}</version>
  60. </dependency>
  61. <!-- 计算视频时长工具 -->
  62. <dependency>
  63. <groupId>ws.schild</groupId>
  64. <artifactId>jave-all-deps</artifactId>
  65. <version>2.5.1</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.fjhx</groupId>
  69. <artifactId>common-tool</artifactId>
  70. <version>${hx.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.fjhx</groupId>
  74. <artifactId>common-client-util</artifactId>
  75. <version>${hx.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springblade</groupId>
  79. <artifactId>blade-user-api</artifactId>
  80. <version>${bladex.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.fjhx</groupId>
  84. <artifactId>service-flow-api</artifactId>
  85. <version>${hx.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.fjhx</groupId>
  89. <artifactId>service-file-api</artifactId>
  90. <version>${hx.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.fjhx</groupId>
  94. <artifactId>service-video-api</artifactId>
  95. <version>${hx.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.fjhx</groupId>
  99. <artifactId>blade-ex-api</artifactId>
  100. <version>${hx.version}</version>
  101. </dependency>
  102. </dependencies>
  103. </dependencyManagement>
  104. </project>