pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.miniapp</groupId>
  5. <artifactId>miniapp</artifactId>
  6. <version>3.8.8</version>
  7. </parent>
  8. <artifactId>miniapp-bus</artifactId>
  9. <name>miniapp-bus</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-amqp</artifactId>
  17. </dependency>
  18. <!-- 核心模块-->
  19. <dependency>
  20. <groupId>com.miniapp</groupId>
  21. <artifactId>miniapp-framework</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.miniapp</groupId>
  25. <artifactId>miniapp-common</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.swagger</groupId>
  34. <artifactId>swagger-models</artifactId>
  35. <version>1.6.2</version>
  36. </dependency>
  37. </dependencies>
  38. </project>