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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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>suser</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>suser</name>
  15. <description>Demo project for Spring Boot</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. <spring-cloud.version>2021.0.0</spring-cloud.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <!--<dependency>-->
  26. <!-- <groupId>org.springframework.cloud</groupId>-->
  27. <!-- <artifactId>spring-cloud-starter-config</artifactId>-->
  28. <!--</dependency>-->
  29. <dependency>
  30. <groupId>mysql</groupId>
  31. <artifactId>mysql-connector-java</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <!--mybatis通用mapper依赖-->
  44. <!--<dependency>-->
  45. <!-- <groupId>tk.mybatis</groupId>-->
  46. <!-- <artifactId>mapper-spring-boot-starter</artifactId>-->
  47. <!-- <version>2.1.5</version>-->
  48. <!--</dependency>-->
  49. <dependency>
  50. <groupId>com.xhkjedu</groupId>
  51. <artifactId>scommons</artifactId>
  52. <version>0.0.1-SNAPSHOT</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.alibaba</groupId>
  56. <artifactId>fastjson</artifactId>
  57. <version>1.2.56</version>
  58. </dependency>
  59. <!-- redis -->
  60. <dependency>
  61. <groupId>redis.clients</groupId>
  62. <artifactId>jedis</artifactId>
  63. <version>2.9.3</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-data-redis</artifactId>
  68. </dependency>
  69. <!-- 导入和导出excel时需要的jar包 -->
  70. <dependency>
  71. <groupId>org.apache.poi</groupId>
  72. <artifactId>poi-ooxml</artifactId>
  73. <version>3.17</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.poi</groupId>
  77. <artifactId>poi</artifactId>
  78. <version>3.17</version>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/tk.mybatis/mapper-spring-boot-starter -->
  81. <dependency>
  82. <groupId>tk.mybatis</groupId>
  83. <artifactId>mapper-spring-boot-starter</artifactId>
  84. <version>2.0.2</version>
  85. </dependency>
  86. </dependencies>
  87. <dependencyManagement>
  88. <dependencies>
  89. <dependency>
  90. <groupId>org.springframework.cloud</groupId>
  91. <artifactId>spring-cloud-dependencies</artifactId>
  92. <version>${spring-cloud.version}</version>
  93. <type>pom</type>
  94. <scope>import</scope>
  95. </dependency>
  96. </dependencies>
  97. </dependencyManagement>
  98. <build>
  99. <plugins>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. <configuration>
  104. <excludes>
  105. <exclude>
  106. <groupId>org.projectlombok</groupId>
  107. <artifactId>lombok</artifactId>
  108. </exclude>
  109. </excludes>
  110. </configuration>
  111. </plugin>
  112. <plugin>
  113. <!--编译跳过测试文件检查的生命周期-->
  114. <groupId>org.apache.maven.plugins</groupId>
  115. <artifactId>maven-surefire-plugin</artifactId>
  116. <version>2.22.2</version>
  117. <configuration>
  118. <skip>true</skip>
  119. </configuration>
  120. </plugin>
  121. </plugins>
  122. </build>
  123. </project>