pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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>com.education</groupId>
  7. <artifactId>education</artifactId>
  8. <version>1.0.5-RELEASE</version>
  9. </parent>
  10. <groupId>com.education.api</groupId>
  11. <artifactId>education-api</artifactId>
  12. <version>1.0.5-RELEASE</version>
  13. <name>education-admin-api</name>
  14. <description>基于Spring Boot构建的智能教育平台</description>
  15. <dependencies>
  16. <dependency>
  17. <artifactId>education-common-api</artifactId>
  18. <groupId>com.education.common.api</groupId>
  19. <version>${project.version}</version>
  20. </dependency>
  21. <dependency>
  22. <artifactId>education-canal</artifactId>
  23. <groupId>com.education.canal</groupId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.github.xuwei-k</groupId>
  28. <artifactId>html2image</artifactId>
  29. <version>0.1.0</version>
  30. </dependency>
  31. <dependency>
  32. <artifactId>education-ai</artifactId>
  33. <groupId>com.education.ai</groupId>
  34. <version>1.0.5-RELEASE</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-maven-plugin</artifactId>
  42. </plugin>
  43. <!-- 打包跳过单元测试 -->
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-surefire-plugin</artifactId>
  47. <version>2.20.1</version>
  48. <configuration>
  49. <!-- 不指定单元测试 -->
  50. <skipTests>true</skipTests>
  51. </configuration>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>