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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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>slive</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>slive</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>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.xhkjedu</groupId>
  49. <artifactId>scommons</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. </dependency>
  52. <!-- https://mvnrepository.com/artifact/tk.mybatis/mapper-spring-boot-starter -->
  53. <dependency>
  54. <groupId>tk.mybatis</groupId>
  55. <artifactId>mapper-spring-boot-starter</artifactId>
  56. <version>2.0.2</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>fastjson</artifactId>
  61. <version>1.2.56</version>
  62. </dependency>
  63. <!-- redis -->
  64. <dependency>
  65. <groupId>redis.clients</groupId>
  66. <artifactId>jedis</artifactId>
  67. <version>2.9.3</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-data-redis</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.httpcomponents</groupId>
  75. <artifactId>httpclient</artifactId>
  76. <version>4.5.9</version>
  77. </dependency>
  78. <!--amqp的起步依赖-->
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-amqp</artifactId>
  82. </dependency>
  83. <!-- 导入和导出excel时需要的jar包 -->
  84. <dependency>
  85. <groupId>org.apache.poi</groupId>
  86. <artifactId>poi-ooxml</artifactId>
  87. <version>3.17</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.poi</groupId>
  91. <artifactId>poi</artifactId>
  92. <version>3.17</version>
  93. </dependency>
  94. </dependencies>
  95. <dependencyManagement>
  96. <dependencies>
  97. <dependency>
  98. <groupId>org.springframework.cloud</groupId>
  99. <artifactId>spring-cloud-dependencies</artifactId>
  100. <version>${spring-cloud.version}</version>
  101. <type>pom</type>
  102. <scope>import</scope>
  103. </dependency>
  104. </dependencies>
  105. </dependencyManagement>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.springframework.boot</groupId>
  110. <artifactId>spring-boot-maven-plugin</artifactId>
  111. <configuration>
  112. <excludes>
  113. <exclude>
  114. <groupId>org.projectlombok</groupId>
  115. <artifactId>lombok</artifactId>
  116. </exclude>
  117. </excludes>
  118. </configuration>
  119. </plugin>
  120. <plugin>
  121. <!--编译跳过测试文件检查的生命周期-->
  122. <groupId>org.apache.maven.plugins</groupId>
  123. <artifactId>maven-surefire-plugin</artifactId>
  124. <version>2.22.2</version>
  125. <configuration>
  126. <skip>true</skip>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </project>