agentduet-sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.agentduet</groupId>
<artifactId>agentduet-sdk</artifactId>
<version>1.0.0-beta1</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>
<groupId>com.agentduet</groupId>
<artifactId>agentduet-sdk</artifactId>
<!-- The public API is fixed by the canonical naming contract (§10), so we are in
"1.0 API, hardening implementation" territory: develop on beta1-SNAPSHOT,
release as 1.0.0-beta1, GA as 1.0.0. Versioning is independent of the Python
SDK's number; only the maturity signal matches. -->
<version>1.0.0-beta1</version>
<packaging>jar</packaging>
<name>AgentDuet SDK</name>
<description>Java SDK for the AgentDuet voice/messaging platform</description>
<url>https://agentduet.com</url>
<licenses>
<license>
<name>AgentDuet Closed Source License</name>
<url>https://agentduet.com/terms</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>agentduet</id>
<name>AgentDuet Team</name>
<email>team@agentduet.com</email>
<organization>AgentDuet</organization>
<organizationUrl>https://agentduet.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@agentduet.com:agentduet-sdk-java.git</connection>
<developerConnection>scm:git:git@agentduet.com:agentduet-sdk-java.git</developerConnection>
<url>https://agentduet.com</url>
</scm>
<properties>
<!-- Java 25 baseline: JEP 491 (JDK 24+) stops virtual threads pinning their carrier
inside synchronized blocks, which the SDK's I/O loops rely on under load.
See specs/2026-07-21-java25-baseline-design.md. -->
<maven.compiler.release>25</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.11.4</junit.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
<configuration>
<useModulePath>false</useModulePath>
</configuration>
</plugin>
<!-- Generate compliance sources.jar containing notice only (closed source) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>sources</classifier>
<classesDirectory>${project.basedir}/src/main/resources</classesDirectory>
<includes>
<include>META-INF/NOTICE.txt</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<doclint>none</doclint>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<waitUntil>published</waitUntil>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>