<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.grarcht.shuttle</groupId>
  <artifactId>framework-integrations-persistence</artifactId>
  <version>3.0.2</version>
  <packaging>aar</packaging>
  <name>Shuttle</name>
  <description>Shuttle provides a modern, guarded way to pass large Serializable objects with Intents or saving them in Bundle objects to avoid app crashes from TransactionTooLargeExceptions.</description>
  <url>https://github.com/grarcht/Shuttle</url>
  <licenses>
    <license>
      <name>The MIT License</name>
      <url>https://github.com/grarcht/Shuttle/blob/main/LICENSE.md</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>grarcht</id>
      <name>Gregory</name>
      <email>gregory@grarcht.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git@github.com:grarcht/Shuttle.git</connection>
    <developerConnection>scm:git@github.com:grarcht/Shuttle.git</developerConnection>
    <url>https://github.com/grarcht/Shuttle</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib</artifactId>
      <version>2.0.21</version>
    </dependency>
    <dependency>
      <groupId>androidx.core</groupId>
      <artifactId>core-ktx</artifactId>
      <version>1.16.0</version>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.5</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.7</version>
        <extensions>true</extensions>
        <configuration>
          <serverId>ossrh</serverId>
          <nexusUrl>https://oss.sonatype.org/</nexusUrl>
          <autoReleaseAfterClose>false</autoReleaseAfterClose>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
