pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>buyao-parent</artifactId>
  7. <groupId>com.buyao</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>buyao-app</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.buyao</groupId>
  15. <artifactId>buyao-core</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.sp</groupId>
  19. <artifactId>sp-manager-third-aliyun-starter</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.sp</groupId>
  23. <artifactId>sp-manager-third-agora-starter</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.sp</groupId>
  27. <artifactId>sp-module-account-app</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>org.projectlombok</groupId>
  36. <artifactId>lombok</artifactId>
  37. <scope>provided</scope>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. <configuration>
  46. <fork>true</fork>
  47. <includeSystemScope>true</includeSystemScope>
  48. </configuration>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>