| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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">
- <parent>
- <artifactId>takai</artifactId>
- <groupId>com.takai</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>takai-ai</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <description>
- takaiAI模块
- </description>
- <dependencies>
- <!-- 通用工具-->
- <dependency>
- <groupId>com.takai</groupId>
- <artifactId>takai-common</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- <version>4.9.3</version>
- <!-- <exclusions>-->
- <!-- <exclusion>-->
- <!-- <groupId>com.squareup.okio</groupId>-->
- <!-- <artifactId>okio</artifactId>-->
- <!-- </exclusion>-->
- <!-- </exclusions>-->
- </dependency>
- <dependency>
- <groupId>io.minio</groupId>
- <artifactId>minio</artifactId>
- <version>7.1.4</version>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp-sse</artifactId>
- <version>4.9.3</version>
- </dependency>
- <dependency>
- <groupId>com.takai</groupId>
- <artifactId>takai-system</artifactId>
- </dependency>
- <dependency>
- <groupId>com.takai</groupId>
- <artifactId>takai-system</artifactId>
- </dependency>
- <dependency>
- <groupId>com.takai</groupId>
- <artifactId>takai-framework</artifactId>
- </dependency>
- </dependencies>
- </project>
|