1234567891011121314151617181920212223242526272829303132333435363738 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.miniapp</groupId>
- <artifactId>miniapp</artifactId>
- <version>3.8.8</version>
- </parent>
- <artifactId>miniapp-bus</artifactId>
- <name>miniapp-bus</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-amqp</artifactId>
- </dependency>
- <!-- 核心模块-->
- <dependency>
- <groupId>com.miniapp</groupId>
- <artifactId>miniapp-framework</artifactId>
- </dependency>
- <dependency>
- <groupId>com.miniapp</groupId>
- <artifactId>miniapp-common</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.swagger</groupId>
- <artifactId>swagger-models</artifactId>
- <version>1.6.2</version>
- </dependency>
- </dependencies>
- </project>
|