pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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>product-library</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. <dependency>
  64. <groupId>org.springblade</groupId>
  65. <artifactId>blade-user-api</artifactId>
  66. <version>${bladex.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.fjhx</groupId>
  70. <artifactId>common-file-api</artifactId>
  71. <version>${hx.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.fjhx</groupId>
  75. <artifactId>common-flow-api</artifactId>
  76. <version>${hx.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.fjhx</groupId>
  80. <artifactId>common-rocketmq</artifactId>
  81. <version>${hx.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.fjhx</groupId>
  85. <artifactId>common-rocketmq-api</artifactId>
  86. <version>${hx.version}</version>
  87. </dependency>
  88. </dependencies>
  89. </dependencyManagement>
  90. </project>