pom.xml 3.8 KB

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