spring-ai-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-core</artifactId> <version>1.0.0-M6</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2023-2024 the original author or authors. ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ https://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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>org.springframework.ai</groupId> <artifactId>spring-ai-core</artifactId> <version>1.0.0-M6</version> <name>Spring AI Core</name> <description>Core domain for AI programming</description> <url>https://github.com/spring-projects/spring-ai</url> <organization> <name>VMware Inc.</name> <url>https://spring.io</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>mpollack</id> <name>Mark Pollack</name> <email>mpollack at vmware.com</email> <organization>VMware</organization> <organizationUrl>http://www.spring.io</organizationUrl> <roles> <role>lead</role> </roles> </developer> <developer> <id>tzolov</id> <name>Christian Tzolov</name> <email>christian tzolov at broadcom.com</email> <organization>Broadcom</organization> <organizationUrl>http://www.spring.io</organizationUrl> <roles> <role>lead</role> </roles> </developer> </developers> <scm> <connection>git://github.com/spring-projects/spring-ai.git</connection> <developerConnection>git@github.com:spring-projects/spring-ai.git</developerConnection> <url>https://github.com/spring-projects/spring-ai</url> </scm> <dependencies> <dependency> <groupId>com.fasterxml.jackson.module</groupId> <artifactId>jackson-module-jsonSchema</artifactId> <version>2.18.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-annotations</artifactId> <version>2.2.25</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-module-swagger-2</artifactId> <version>4.37.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>ST4</artifactId> <version>4.3.4</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>4.13.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>3.7.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>6.2.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-messaging</artifactId> <version>6.2.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-core</artifactId> <version>1.14.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>context-propagation</artifactId> <version>1.1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-tracing-bridge-otel</artifactId> <version>1.4.2</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.knuddels</groupId> <artifactId>jtokkit</artifactId> <version>1.1.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-generator</artifactId> <version>4.37.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.victools</groupId> <artifactId>jsonschema-module-jackson</artifactId> <version>4.37.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.18.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.18.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.25</version> <scope>compile</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.9.25</version> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>