pom.xml 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.7.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.yunzhi</groupId>
  12. <artifactId>inte</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>inte</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>fastjson</artifactId>
  27. <version>1.2.4</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.netty</groupId>
  31. <artifactId>netty-all</artifactId>
  32. <version>4.1.55.Final</version>
  33. </dependency>
  34. <!--mybaits-->
  35. <dependency>
  36. <groupId>org.mybatis.spring.boot</groupId>
  37. <artifactId>mybatis-spring-boot-starter</artifactId>
  38. <version>2.0.1</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>p6spy</groupId>
  42. <artifactId>p6spy</artifactId>
  43. <version>3.8.7</version>
  44. </dependency>
  45. <!-- sqlite3驱动包 -->
  46. <dependency>
  47. <groupId>org.xerial</groupId>
  48. <artifactId>sqlite-jdbc</artifactId>
  49. <version>3.27.2.1</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.baomidou</groupId>
  53. <artifactId>mybatis-plus-boot-starter</artifactId>
  54. <version>3.2.0</version>
  55. </dependency>
  56. <!-- <dependency>-->
  57. <!-- <groupId>com.github.pagehelper</groupId>-->
  58. <!-- <artifactId>pagehelper</artifactId>-->
  59. <!-- <version>5.2.1</version>-->
  60. <!-- </dependency>-->
  61. <dependency>
  62. <groupId>mysql</groupId>
  63. <artifactId>mysql-connector-java</artifactId>
  64. <scope>runtime</scope>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.projectlombok</groupId>
  68. <artifactId>lombok</artifactId>
  69. <optional>true</optional>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-test</artifactId>
  74. <scope>test</scope>
  75. </dependency>
  76. <!--swagger start-->
  77. <dependency>
  78. <groupId>io.springfox</groupId>
  79. <artifactId>springfox-boot-starter</artifactId>
  80. <version>3.0.0</version>
  81. </dependency>
  82. <!--swagger end-->
  83. </dependencies>
  84. <build>
  85. <plugins>
  86. <plugin>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-maven-plugin</artifactId>
  89. <configuration>
  90. <excludes>
  91. <exclude>
  92. <groupId>org.projectlombok</groupId>
  93. <artifactId>lombok</artifactId>
  94. </exclude>
  95. </excludes>
  96. </configuration>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>