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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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-netflix-eureka-client</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.boot</groupId>
  31. <artifactId>spring-boot-starter-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.xhkjedu</groupId>
  36. <artifactId>scommons</artifactId>
  37. <version>0.0.1-SNAPSHOT</version>
  38. </dependency>
  39. <!-- 导入和导出excel时需要的jar包 -->
  40. <dependency>
  41. <groupId>org.apache.poi</groupId>
  42. <artifactId>poi-ooxml</artifactId>
  43. <version>3.17</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.poi</groupId>
  47. <artifactId>poi</artifactId>
  48. <version>3.17</version>
  49. </dependency>
  50. <!--解析ip-->
  51. <dependency>
  52. <groupId>org.lionsoul</groupId>
  53. <artifactId>ip2region</artifactId>
  54. <version>2.6.6</version>
  55. </dependency>
  56. </dependencies>
  57. <dependencyManagement>
  58. <dependencies>
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-dependencies</artifactId>
  62. <version>${spring-cloud.version}</version>
  63. <type>pom</type>
  64. <scope>import</scope>
  65. </dependency>
  66. </dependencies>
  67. </dependencyManagement>
  68. <build>
  69. <plugins>
  70. <plugin>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-maven-plugin</artifactId>
  73. <configuration>
  74. <excludes>
  75. <exclude>
  76. <groupId>org.projectlombok</groupId>
  77. <artifactId>lombok</artifactId>
  78. </exclude>
  79. </excludes>
  80. </configuration>
  81. </plugin>
  82. <plugin>
  83. <!--编译跳过测试文件检查的生命周期-->
  84. <groupId>org.apache.maven.plugins</groupId>
  85. <artifactId>maven-surefire-plugin</artifactId>
  86. <version>2.22.2</version>
  87. <configuration>
  88. <skip>true</skip>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>