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

1 년 전
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>slog</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>slog</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. </dependencies>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-dependencies</artifactId>
  27. <version>${spring-cloud.version}</version>
  28. <type>pom</type>
  29. <scope>import</scope>
  30. </dependency>
  31. </dependencies>
  32. </dependencyManagement>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-maven-plugin</artifactId>
  38. <configuration>
  39. <excludes>
  40. <exclude>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. </exclude>
  44. </excludes>
  45. </configuration>
  46. </plugin>
  47. <plugin>
  48. <!--编译跳过测试文件检查的生命周期-->
  49. <groupId>org.apache.maven.plugins</groupId>
  50. <artifactId>maven-surefire-plugin</artifactId>
  51. <version>2.22.2</version>
  52. <configuration>
  53. <skip>true</skip>
  54. </configuration>
  55. </plugin>
  56. </plugins>
  57. </build>
  58. </project>