wuyongjin/javaAI
0
1<?xml version="1.0" encoding="UTF-8"?>2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">4 <modelVersion>4.0.0</modelVersion>5 <parent>6 <groupId>org.springframework.boot</groupId>7 <artifactId>spring-boot-starter-parent</artifactId>8 <version>2.3.12.RELEASE</version>9 <relativePath/> <!-- lookup parent from repository -->10 </parent>11 <groupId>com.bitservice</groupId>12 <artifactId>AI_txt2Image</artifactId>13 <version>0.0.1-SNAPSHOT</version>14 <packaging>jar</packaging>15 <name>AI_txt2Image</name>16 <description>Demo project for Spring Boot</description>17 <properties>18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>19 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>20 <java.version>1.8</java.version>21 </properties>22 <dependencies>23 <dependency>24 <groupId>org.springframework.boot</groupId>25 <artifactId>spring-boot-starter-web</artifactId>26 </dependency>27 28 <dependency>29 <groupId>org.springframework.boot</groupId>30 <artifactId>spring-boot-starter-test</artifactId>31 <scope>test</scope>32 </dependency>33 <dependency>34 <groupId>com.azure</groupId>35 <artifactId>azure-ai-openai</artifactId>36 <version>1.0.0-beta.2</version>37 </dependency>38 <dependency>39 <groupId>com.alibaba</groupId>40 <artifactId>fastjson</artifactId>41 <version>1.2.47</version>42 </dependency>43 <dependency>44 <groupId>org.apache.httpcomponents</groupId>45 <artifactId>httpclient</artifactId>46 <version> 4.5.3</version>47 </dependency>48 <dependency>49 <groupId>org.projectlombok</groupId>50 <artifactId>lombok</artifactId>51 <scope>provided</scope>52 </dependency>53 </dependencies>54 55 <build>56 <finalName>/txt2Image</finalName>57 <plugins>58 <plugin>59 <groupId>org.springframework.boot</groupId>60 <artifactId>spring-boot-maven-plugin</artifactId>61 </plugin>62 </plugins>63 </build>64 65</project>66 