pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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>product-library</module>
  22. </modules>
  23. <properties>
  24. <maven.compiler.source>8</maven.compiler.source>
  25. <maven.compiler.target>8</maven.compiler.target>
  26. <bladex.version>2.8.2.RELEASE</bladex.version>
  27. <hx.version>3.2.0</hx.version>
  28. <hutool.version>5.8.3</hutool.version>
  29. <velocity.version>2.3</velocity.version>
  30. </properties>
  31. <dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springblade.platform</groupId>
  35. <artifactId>blade-bom</artifactId>
  36. <version>${bladex.version}</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springblade</groupId>
  42. <artifactId>blade-common</artifactId>
  43. <version>${bladex.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.fjhx</groupId>
  47. <artifactId>common-tool</artifactId>
  48. <version>${hx.version}</version>
  49. </dependency>
  50. <!-- hutool 工具包 -->
  51. <dependency>
  52. <groupId>cn.hutool</groupId>
  53. <artifactId>hutool-all</artifactId>
  54. <version>${hutool.version}</version>
  55. </dependency>
  56. <!-- myBatis-plus代码自动生成模板引擎 -->
  57. <dependency>
  58. <groupId>org.apache.velocity</groupId>
  59. <artifactId>velocity-engine-core</artifactId>
  60. <version>${velocity.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springblade</groupId>
  64. <artifactId>blade-user-api</artifactId>
  65. <version>${bladex.version}</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.fjhx</groupId>
  69. <artifactId>common-file-api</artifactId>
  70. <version>${hx.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.fjhx</groupId>
  74. <artifactId>common-flow-api</artifactId>
  75. <version>${hx.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.fjhx</groupId>
  79. <artifactId>common-rocketmq</artifactId>
  80. <version>${hx.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.fjhx</groupId>
  84. <artifactId>common-rocketmq-api</artifactId>
  85. <version>${hx.version}</version>
  86. </dependency>
  87. </dependencies>
  88. </dependencyManagement>
  89. </project>