智慧校园微服务
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.3KB

2 lat temu
2 lat temu
2 lat temu
2 lat temu
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <optional>true</optional>
  21. </dependency>
  22. <!--分页插件https://github.com/pagehelper/pagehelper-spring-boot-->
  23. <dependency>
  24. <groupId>com.github.pagehelper</groupId>
  25. <artifactId>pagehelper-spring-boot-starter</artifactId>
  26. <version>1.4.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.alibaba</groupId>
  30. <artifactId>fastjson</artifactId>
  31. <version>1.2.56</version>
  32. </dependency>
  33. <!-- redis -->
  34. <dependency>
  35. <groupId>redis.clients</groupId>
  36. <artifactId>jedis</artifactId>
  37. <version>2.9.3</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-data-redis</artifactId>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. <configuration>
  50. <skip>true</skip>
  51. <excludes>
  52. <exclude>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. </exclude>
  56. </excludes>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>