pom.xml 2.4 KB

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