pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>hx-tool</module>
  16. <module>client-util</module>
  17. </modules>
  18. <properties>
  19. <maven.compiler.source>8</maven.compiler.source>
  20. <maven.compiler.target>8</maven.compiler.target>
  21. <bladex.version>2.8.2.RELEASE</bladex.version>
  22. <hx.version>3.2.0</hx.version>
  23. <hutool.version>5.8.3</hutool.version>
  24. <velocity.version>2.3</velocity.version>
  25. </properties>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.springblade.platform</groupId>
  30. <artifactId>blade-bom</artifactId>
  31. <version>${bladex.version}</version>
  32. <type>pom</type>
  33. <scope>import</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springblade</groupId>
  37. <artifactId>blade-common</artifactId>
  38. <version>${bladex.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.fjhx</groupId>
  42. <artifactId>hx-tool</artifactId>
  43. <version>${hx.version}</version>
  44. </dependency>
  45. <!-- hutool 工具包 -->
  46. <dependency>
  47. <groupId>cn.hutool</groupId>
  48. <artifactId>hutool-all</artifactId>
  49. <version>${hutool.version}</version>
  50. </dependency>
  51. <!-- myBatis-plus代码自动生成模板引擎 -->
  52. <dependency>
  53. <groupId>org.apache.velocity</groupId>
  54. <artifactId>velocity-engine-core</artifactId>
  55. <version>${velocity.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springblade</groupId>
  59. <artifactId>blade-user-api</artifactId>
  60. <version>${bladex.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.fjhx</groupId>
  64. <artifactId>file-service-api</artifactId>
  65. <version>${hx.version}</version>
  66. </dependency>
  67. </dependencies>
  68. </dependencyManagement>
  69. </project>