framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.grarcht.shuttle</groupId>
<artifactId>framework</artifactId>
<version>4.0.0</version>
</dependency><?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</artifactId>
<version>4.0.0</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.2.10</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-android</artifactId>
<version>1.10.2</version>
</dependency>
<dependency>
<groupId>androidx.appcompat</groupId>
<artifactId>appcompat</artifactId>
<version>1.7.1</version>
</dependency>
<dependency>
<groupId>androidx.lifecycle</groupId>
<artifactId>lifecycle-runtime-ktx</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>androidx.core</groupId>
<artifactId>core-ktx</artifactId>
<version>1.16.0</version>
</dependency>
<dependency>
<groupId>androidx.annotation</groupId>
<artifactId>annotation-jvm</artifactId>
<version>1.9.1</version>
</dependency>
<dependency>
<groupId>com.grarcht.shuttle</groupId>
<artifactId>framework-annotations</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>com.grarcht.shuttle</groupId>
<artifactId>framework-integrations-persistence</artifactId>
<version>4.0.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>