fireweave-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>ai.fireweave</groupId>
<artifactId>fireweave-sdk</artifactId>
<version>2.3.0</version>
</dependency><?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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>ai.fireweave</groupId>
<artifactId>fireweave-java-parent</artifactId>
<version>2.3.0</version>
</parent>
<artifactId>fireweave-sdk</artifactId>
<name>Fireweave SDK core (runtime + client)</name>
<description>
FireweaveRuntime, FireweaveClient (control points, target registration, releases,
exposures, signals), canonical types, FireweaveRemoteAdapter, FireweaveLocalAdapter,
and the BackendAdapter seam. Zero runtime dependencies.
</description>
<url>https://github.com/FireWeave-HQ/fireweave-sdk</url>
<properties>
<automatic.module.name>ai.fireweave.sdk</automatic.module.name>
<!-- Library module — CLI exec:java is for examples/java. -->
<exec.skip>true</exec.skip>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<!-- Used only by tests to validate the error taxonomy against contracts/errors.json -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>