Skip to content

Commit

Permalink
Merge pull request #179 from wxbty/bugfix-prompt
Browse files Browse the repository at this point in the history
Fixed the bug that stduio sample reported an error when starting
  • Loading branch information
chickenlj authored Dec 10, 2024
2 parents 8ba8cf7 + db32167 commit 042a8fd
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion spring-ai-alibaba-graph/spring-ai-alibaba-graph-studio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,42 @@
<dependency>
<groupId>com.alibaba.cloud.ai</groupId>
<artifactId>spring-ai-alibaba-graph-core</artifactId>
<version>${parent.version}</version>
<version>${parent.version}</version>
</dependency>

<dependency>
<groupId>com.alibaba.cloud.ai</groupId>
<artifactId>spring-ai-alibaba-autoconfigure</artifactId>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
</dependency>

<dependency>
<groupId>org.eclipse.jetty.ee10</groupId>
<artifactId>jetty-ee10-servlet</artifactId>
<version>${jetty.version}</version>
</dependency>

<!-- <dependency>-->
<!-- <groupId>org.slf4j</groupId>-->
<!-- <artifactId>slf4j-jdk14</artifactId>-->
<!-- </dependency>-->

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>

<dependency>
Expand Down

0 comments on commit 042a8fd

Please sign in to comment.