pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <groupId>com.nexo</groupId>
  7. <artifactId>nexo-common</artifactId>
  8. <version>1.8.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>nexo-common-core</artifactId>
  12. <description>
  13. nexo-common-core核心模块
  14. </description>
  15. <dependencies>
  16. <!-- Source: https://mvnrepository.com/artifact/com.alibaba.fastjson2/fastjson2 -->
  17. <dependency>
  18. <groupId>com.alibaba.fastjson2</groupId>
  19. <artifactId>fastjson2</artifactId>
  20. <version>2.0.61</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <!-- Spring Context Support -->
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-context-support</artifactId>
  27. </dependency>
  28. <!-- Spring Web -->
  29. <dependency>
  30. <groupId>org.springframework</groupId>
  31. <artifactId>spring-web</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.baomidou</groupId>
  35. <artifactId>mybatis-plus-annotation</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.mybatis</groupId>
  39. <artifactId>mybatis</artifactId>
  40. </dependency>
  41. <!-- Hibernate Validator -->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-validation</artifactId>
  45. </dependency>
  46. <!-- Jackson -->
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.core</groupId>
  49. <artifactId>jackson-databind</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.fasterxml.jackson.datatype</groupId>
  53. <artifactId>jackson-datatype-jsr310</artifactId>
  54. </dependency>
  55. <!-- Jaxb -->
  56. <dependency>
  57. <groupId>javax.xml.bind</groupId>
  58. <artifactId>jaxb-api</artifactId>
  59. </dependency>
  60. <!-- Apache Lang3 -->
  61. <dependency>
  62. <groupId>org.apache.commons</groupId>
  63. <artifactId>commons-lang3</artifactId>
  64. </dependency>
  65. <!-- Java Servlet -->
  66. <dependency>
  67. <groupId>javax.servlet</groupId>
  68. <artifactId>javax.servlet-api</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>io.swagger.core.v3</groupId>
  72. <artifactId>swagger-annotations</artifactId>
  73. </dependency>
  74. <!-- 离线IP地址定位库 -->
  75. <dependency>
  76. <groupId>org.lionsoul</groupId>
  77. <artifactId>ip2region</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>cn.hutool</groupId>
  85. <artifactId>hutool-core</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>cn.hutool</groupId>
  89. <artifactId>hutool-http</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>cn.hutool</groupId>
  93. <artifactId>hutool-extra</artifactId>
  94. </dependency>
  95. <!-- 自动生成YML配置关联JSON文件 -->
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-configuration-processor</artifactId>
  99. </dependency>
  100. </dependencies>
  101. </project>