pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~
  4. ~ Copyright (c) 2018-2025, hnqz All rights reserved.
  5. ~
  6. ~ Redistribution and use in source and binary forms, with or without
  7. ~ modification, are permitted provided that the following conditions are met:
  8. ~
  9. ~ Redistributions of source code must retain the above copyright notice,
  10. ~ this list of conditions and the following disclaimer.
  11. ~ Redistributions in binary form must reproduce the above copyright
  12. ~ notice, this list of conditions and the following disclaimer in the
  13. ~ documentation and/or other materials provided with the distribution.
  14. ~ Neither the name of the pig4cloud.com developer nor the names of its
  15. ~ contributors may be used to endorse or promote products derived from
  16. ~ this software without specific prior written permission.
  17. ~ Author: hnqz
  18. ~
  19. -->
  20. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  22. <modelVersion>4.0.0</modelVersion>
  23. <parent>
  24. <groupId>com.qunzhixinxi</groupId>
  25. <artifactId>hnqz-common</artifactId>
  26. <version>3.9.0</version>
  27. </parent>
  28. <artifactId>hnqz-common-core</artifactId>
  29. <packaging>jar</packaging>
  30. <description>hnqz 公共工具类核心包</description>
  31. <dependencies>
  32. <!--hutool-->
  33. <dependency>
  34. <groupId>cn.hutool</groupId>
  35. <artifactId>hutool-all</artifactId>
  36. <version>${hutool.version}</version>
  37. </dependency>
  38. <!--server-api-->
  39. <dependency>
  40. <groupId>javax.servlet</groupId>
  41. <artifactId>javax.servlet-api</artifactId>
  42. </dependency>
  43. <!--hibernate-validator-->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-validation</artifactId>
  47. </dependency>
  48. <!--json模块-->
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-json</artifactId>
  52. </dependency>
  53. <!--TTL-->
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>transmittable-thread-local</artifactId>
  57. <version>${ttl.version}</version>
  58. </dependency>
  59. <!--swagger 依赖-->
  60. <dependency>
  61. <groupId>io.swagger</groupId>
  62. <artifactId>swagger-annotations</artifactId>
  63. </dependency>
  64. <!-- commons-beanutils -->
  65. <dependency>
  66. <groupId>commons-beanutils</groupId>
  67. <artifactId>commons-beanutils</artifactId>
  68. <version>1.9.4</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.google.guava</groupId>
  72. <artifactId>guava</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-io</groupId>
  76. <artifactId>commons-io</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-codec</groupId>
  80. <artifactId>commons-codec</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.baomidou</groupId>
  84. <artifactId>mybatis-plus-extension</artifactId>
  85. </dependency>
  86. </dependencies>
  87. </project>