pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>service</artifactId>
  7. <groupId>com.atguigu.tingshu</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-order</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0</version>
  14. <properties>
  15. <skipTests>true</skipTests>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.atguigu.tingshu</groupId>
  20. <artifactId>rabbit-util</artifactId>
  21. <version>1.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.atguigu.tingshu</groupId>
  25. <artifactId>service-account-client</artifactId>
  26. <version>1.0</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <finalName>${project.artifactId}</finalName>
  31. <plugins>
  32. <plugin>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-maven-plugin</artifactId>
  35. </plugin>
  36. </plugins>
  37. </build>
  38. <repositories>
  39. <!-- 下载mybatis-plus SNAPSHOT 版本所需仓库 -->
  40. <repository>
  41. <id>ossrh</id>
  42. <name>OSS Snapshot repository</name>
  43. <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
  44. <releases>
  45. <enabled>false</enabled>
  46. </releases>
  47. <snapshots>
  48. <enabled>true</enabled>
  49. </snapshots>
  50. </repository>
  51. </repositories>
  52. </project>