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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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>sapi</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>sapi</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. <!-- 导入和导出excel时需要的jar包 -->
  22. <dependency>
  23. <groupId>org.apache.poi</groupId>
  24. <artifactId>poi-ooxml</artifactId>
  25. <version>3.17</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.poi</groupId>
  29. <artifactId>poi</artifactId>
  30. <version>3.17</version>
  31. </dependency>
  32. <!--amqp的起步依赖-->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-amqp</artifactId>
  36. </dependency>
  37. </dependencies>
  38. <dependencyManagement>
  39. <dependencies>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-dependencies</artifactId>
  43. <version>${spring-cloud.version}</version>
  44. <type>pom</type>
  45. <scope>import</scope>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. <configuration>
  55. <excludes>
  56. <exclude>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. </exclude>
  60. </excludes>
  61. </configuration>
  62. </plugin>
  63. <plugin>
  64. <!--编译跳过测试文件检查的生命周期-->
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-surefire-plugin</artifactId>
  67. <version>2.22.2</version>
  68. <configuration>
  69. <skip>true</skip>
  70. </configuration>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>