智慧校园微服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.6.3</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.xhkjedu</groupId>
  12. <artifactId>scommons</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>scommons</name>
  15. <description>scommons</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. <version>1.18.24</version>
  21. <!--<optional>true</optional>-->
  22. </dependency>
  23. <!--分页插件https://github.com/pagehelper/pagehelper-spring-boot-->
  24. <dependency>
  25. <groupId>com.github.pagehelper</groupId>
  26. <artifactId>pagehelper-spring-boot-starter</artifactId>
  27. <version>1.4.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>fastjson</artifactId>
  32. <version>1.2.56</version>
  33. </dependency>
  34. <!-- redis -->
  35. <dependency>
  36. <groupId>redis.clients</groupId>
  37. <artifactId>jedis</artifactId>
  38. <version>2.9.3</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-redis</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>mysql</groupId>
  46. <artifactId>mysql-connector-java</artifactId>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/tk.mybatis/mapper-spring-boot-starter -->
  49. <dependency>
  50. <groupId>tk.mybatis</groupId>
  51. <artifactId>mapper-spring-boot-starter</artifactId>
  52. <version>2.0.2</version>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <plugins>
  57. <plugin>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-maven-plugin</artifactId>
  60. <configuration>
  61. <skip>true</skip>
  62. <excludes>
  63. <exclude>
  64. <groupId>org.projectlombok</groupId>
  65. <artifactId>lombok</artifactId>
  66. </exclude>
  67. </excludes>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>