pom.xml 2.7 KB

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