pom.xml 4.1 KB

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