pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~
  4. ~ Copyright (c) 2018-2025, avenue 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: avenue
  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.bj1890</groupId>
  25. <artifactId>avenue-common</artifactId>
  26. <version>4.6.0</version>
  27. </parent>
  28. <artifactId>avenue-common-core</artifactId>
  29. <packaging>jar</packaging>
  30. <description>avenue 公共工具类核心包</description>
  31. <dependencies>
  32. <!--hutool-->
  33. <dependency>
  34. <groupId>cn.hutool</groupId>
  35. <artifactId>hutool-json</artifactId>
  36. </dependency>
  37. <!--mvc 相关配置-->
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-webmvc</artifactId>
  41. <scope>provided</scope>
  42. </dependency>
  43. <!--server-api-->
  44. <dependency>
  45. <groupId>javax.servlet</groupId>
  46. <artifactId>javax.servlet-api</artifactId>
  47. </dependency>
  48. <!--hibernate-validator-->
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-validation</artifactId>
  52. </dependency>
  53. <!--json模块-->
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-json</artifactId>
  57. </dependency>
  58. <!--TTL-->
  59. <dependency>
  60. <groupId>com.alibaba</groupId>
  61. <artifactId>transmittable-thread-local</artifactId>
  62. <version>${ttl.version}</version>
  63. </dependency>
  64. <!--swagger 依赖-->
  65. <dependency>
  66. <groupId>io.swagger.core.v3</groupId>
  67. <artifactId>swagger-annotations</artifactId>
  68. </dependency>
  69. </dependencies>
  70. </project>