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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. <groupId>com.xhkjedu</groupId>
  6. <artifactId>slive</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>slive</name>
  9. <description>Demo project for Spring Boot</description>
  10. <parent>
  11. <groupId>com.xhkjedu</groupId>
  12. <artifactId>cloud-schoolapi</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.xhkjedu</groupId>
  18. <artifactId>scommons</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.apache.httpcomponents</groupId>
  23. <artifactId>httpclient</artifactId>
  24. <version>4.5.9</version>
  25. </dependency>
  26. <!--amqp的起步依赖-->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-amqp</artifactId>
  30. </dependency>
  31. <!-- 导入和导出excel时需要的jar包 -->
  32. <dependency>
  33. <groupId>org.apache.poi</groupId>
  34. <artifactId>poi-ooxml</artifactId>
  35. <version>3.17</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.poi</groupId>
  39. <artifactId>poi</artifactId>
  40. <version>3.17</version>
  41. </dependency>
  42. <!--解析ip-->
  43. <dependency>
  44. <groupId>org.lionsoul</groupId>
  45. <artifactId>ip2region</artifactId>
  46. <version>2.6.6</version>
  47. </dependency>
  48. </dependencies>
  49. <dependencyManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>org.springframework.cloud</groupId>
  53. <artifactId>spring-cloud-dependencies</artifactId>
  54. <version>${spring-cloud.version}</version>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. </dependencies>
  59. </dependencyManagement>
  60. <build>
  61. <plugins>
  62. <plugin>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-maven-plugin</artifactId>
  65. <configuration>
  66. <excludes>
  67. <exclude>
  68. <groupId>org.projectlombok</groupId>
  69. <artifactId>lombok</artifactId>
  70. </exclude>
  71. </excludes>
  72. </configuration>
  73. </plugin>
  74. <plugin>
  75. <!--编译跳过测试文件检查的生命周期-->
  76. <groupId>org.apache.maven.plugins</groupId>
  77. <artifactId>maven-surefire-plugin</artifactId>
  78. <version>2.22.2</version>
  79. <configuration>
  80. <skip>true</skip>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>