pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.kyl</groupId>
  8. <artifactId>kyl</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>kyl-common</artifactId>
  12. <properties>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <!--分页工具-PageHelper-->
  19. <dependency>
  20. <groupId>com.github.pagehelper</groupId>
  21. <artifactId>pagehelper-spring-boot-starter</artifactId>
  22. </dependency>
  23. <!--工具包-HuTool-->
  24. <dependency>
  25. <groupId>cn.hutool</groupId>
  26. <artifactId>hutool-all</artifactId>
  27. </dependency>
  28. <!---->
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. </dependency>
  33. <!-- 拷贝对象 -->
  34. <dependency>
  35. <groupId>ma.glasnost.orika</groupId>
  36. <artifactId>orika-core</artifactId>
  37. </dependency>
  38. <!---->
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>fastjson</artifactId>
  42. </dependency>
  43. <!---->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-web</artifactId>
  47. </dependency>
  48. <!---->
  49. <dependency>
  50. <groupId>com.aliyun.oss</groupId>
  51. <artifactId>aliyun-sdk-oss</artifactId>
  52. </dependency>
  53. <!-- knife4j版接口文档 访问/doc.html-->
  54. <dependency>
  55. <groupId>com.github.xiaoymin</groupId>
  56. <artifactId>knife4j-spring-boot-starter</artifactId>
  57. </dependency>
  58. <!--redis starter-->
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-data-redis</artifactId>
  62. </dependency>
  63. <!--JWT-->
  64. <dependency>
  65. <groupId>com.auth0</groupId>
  66. <artifactId>java-jwt</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.jsonwebtoken</groupId>
  70. <artifactId>jjwt</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>commons-codec</groupId>
  74. <artifactId>commons-codec</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>javax.xml.bind</groupId>
  78. <artifactId>jaxb-api</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-security</artifactId>
  83. </dependency>
  84. </dependencies>
  85. <!-- 项目构建配置 -->
  86. <build>
  87. <plugins>
  88. <!-- Maven编译插件配置 -->
  89. <plugin>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-maven-plugin</artifactId>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>