| | |
| | | <parent> |
| | | <groupId>com.iailab</groupId> |
| | | <artifactId>iailab-module-ai</artifactId> |
| | | <version>${ai.revision}</version> |
| | | <version>${revision}</version> |
| | | </parent> |
| | | <build> |
| | | <plugins> |
| | |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | | <configuration> |
| | | <source>17</source> |
| | | <target>17</target> |
| | | <source>1.8</source> |
| | | <target>1.8</target> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | |
| | | <artifactId>iailab-common</artifactId> |
| | | </dependency> |
| | | |
| | | <!-- Web 相关 --> |
| | | <dependency> |
| | | <groupId>org.springdoc</groupId> |
| | | <artifactId>springdoc-openapi-ui</artifactId> |
| | | <version>1.8.0</version> |
| | | <scope>provided</scope> <!-- 设置为 provided,主要是 PageParam 使用到 --> |
| | | </dependency> |
| | | |
| | | <!-- 参数校验 --> |
| | | <dependency> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-validation</artifactId> |
| | | <optional>true</optional> |
| | | </dependency> |
| | | |
| | | <!-- RPC 远程调用相关 --> |
| | | <dependency> |
| | | <groupId>org.springframework.cloud</groupId> |
| | | <artifactId>spring-cloud-openfeign-core</artifactId> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>io.swagger.core.v3</groupId> |
| | | <artifactId>swagger-annotations</artifactId> |
| | | <version>2.2.25</version> |
| | | <scope>compile</scope> |
| | | <artifactId>spring-cloud-starter-openfeign</artifactId> |
| | | <optional>true</optional> |
| | | </dependency> |
| | | </dependencies> |
| | | </project> |