spring-ai-cn-chatglm
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>world.xxnn.dandelion</groupId> <artifactId>spring-ai-cn-chatglm</artifactId> <version>1.0.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>world.xxnn.dandelion</groupId> <artifactId>spring-ai-cn-chatglm</artifactId> <version>1.0.1</version> <name>Spring AI ChatGLM Chat Client</name> <description>ChatGLM support</description> <url>https://github.com/shennong-cn/dandelion</url> <organization> <name>XXNN.world</name> <url>https://xxnn.world</url> </organization> <licenses> <license> <name>Apache 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>shennong-cn</id> <name>Yang Shennong</name> <email>yangyf at xxnn.world</email> <organization>xxnn.world</organization> <organizationUrl>http://www.xxnn.world</organizationUrl> <roles> <role>lead</role> </roles> </developer> </developers> <scm> <connection>git://github.com/shennong-cn/dandelion.git</connection> <developerConnection>git@github.com:shennong-cn/dandelion.git</developerConnection> <url>https://github.com/shennong-cn/dandelion</url> </scm> <dependencies> <dependency> <groupId>io.springboot.ai</groupId> <artifactId>spring-ai-core</artifactId> <version>1.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.springboot.ai</groupId> <artifactId>spring-ai-retry</artifactId> <version>1.0.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot</artifactId> <version>3.2.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>json-path</artifactId> <version>5.3.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-generator</artifactId> <version>4.31.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-module-jackson</artifactId> <version>4.31.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>6.1.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> <version>3.2.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>4.2.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.16.1</version> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> </plugin> </plugins> </build> </project>