<?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>
     <name>ShiftAI Agentic Infra Java SDK</name>
    <description>
This SDK is the official gateway to the Shift AI Agentic Infra services, enabling developers to directly integrate and use agentic capabilities in their applications.
Website🌐 - theshiftai.in | Github🐙- github.com/shiftaitop | Linkedin 💼 linkedin.com/company/theshiftai-in | X-@shift_ai_first
Founder - Suresh Gokarakonda linkedin.com/in/gokarakonda 
</description>

    <url>https://github.com/shiftaitop/shiftai-agentic-java-sdk</url>
    <licenses>
  <license>
    <name>MIT License</name>
    <url>https://opensource.org/licenses/MIT</url>
  </license>
</licenses>
<developers>
  <developer>
    <name>ShiftAI</name>
    <email>s.tadakamalla@theshiftai.in</email>
    <organization>ShiftAI</organization>
    <organizationUrl>https://theshiftai.in</organizationUrl>
  </developer>
</developers>
 <scm>
  <connection>scm:git:git://github.com/shiftaitop/shiftai-agentic-java-sdk.git</connection>
  <developerConnection>scm:git:ssh://github.com:shiftaitop/shiftai-agentic-java-sdk.git</developerConnection>
  <url>https://github.com/shiftaitop/shiftai-agentic-java-sdk</url>
</scm>


    <groupId>in.theshiftai</groupId>
    <artifactId>shiftaiagenticinfra-sdk-java</artifactId>
    <version>0.0.8</version>
    <packaging>jar</packaging>

    <properties>
        <maven.compiler.source>17</maven.compiler.source>
        <maven.compiler.target>17</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>

        <!-- HTTP Client -->
        <dependency>
            <groupId>com.squareup.okhttp3</groupId>
            <artifactId>okhttp</artifactId>
            <version>4.12.0</version>
        </dependency>

        <!-- JSON Serialization -->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.17.2</version>
        </dependency>

        <!-- JSON Date/Time support -->
        <dependency>
            <groupId>com.fasterxml.jackson.datatype</groupId>
            <artifactId>jackson-datatype-jsr310</artifactId>
            <version>2.17.2</version>
        </dependency>

        <!-- Logging (minimal) -->
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>2.0.9</version>
        </dependency>

        <!-- Test Dependencies -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>5.10.0</version>
            <scope>test</scope>
        </dependency>

    </dependencies>
    <build>
  <plugins>

    <!-- GPG signing (MANDATORY) -->
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-gpg-plugin</artifactId>
      <version>3.2.4</version>
      <executions>
        <execution>
          <id>sign-artifacts</id>
          <phase>verify</phase>
          <goals>
            <goal>sign</goal>
          </goals>
        </execution>
      </executions>
       <configuration>
        <useAgent>true</useAgent>
       </configuration>
    </plugin>

    <!-- Attach sources JAR -->
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-source-plugin</artifactId>
      <version>3.3.1</version>
      <executions>
        <execution>
          <id>attach-sources</id>
          <goals>
            <goal>jar</goal>
          </goals>
        </execution>
      </executions>
    </plugin>

    <!-- Attach javadoc JAR -->
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-javadoc-plugin</artifactId>
      <version>3.6.3</version>
      <executions>
        <execution>
          <id>attach-javadocs</id>
          <goals>
            <goal>jar</goal>
          </goals>
        </execution>
      </executions>
    </plugin>
    <!-- Central Publishing Maven Plugin (REQUIRED for central API) -->
<plugin>
  <groupId>org.sonatype.central</groupId>
  <artifactId>central-publishing-maven-plugin</artifactId>
  <version>0.9.0</version>
  <extensions>true</extensions>
  <configuration>
    <publishingServerId>central</publishingServerId>
  </configuration>
</plugin>
  </plugins>
</build>
<distributionManagement>
  <repository>
    <id>central</id>
    <url>https://central.sonatype.com/api/v1/publisher</url>
  </repository>
</distributionManagement>

</project>