robospice-retrofit-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.octo.android.robospice</groupId>
<artifactId>robospice-retrofit-parent</artifactId>
<version>1.4.14</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Sonatype config to publish on Maven Central -->
<parent>
<groupId>com.octo.android.robospice</groupId>
<artifactId>robospice-parent</artifactId>
<version>1.4.14</version>
<relativePath>../../</relativePath>
</parent>
<artifactId>robospice-retrofit-parent</artifactId>
<packaging>pom</packaging>
<name>Robospice - Extension Retrofit Module Parent</name>
<description>RoboSpice Retrofit module parent</description>
<modules>
<!-- library -->
<module>robospice-retrofit</module>
<!-- test app -->
<module>robospice-retrofit-test</module>
</modules>
<properties>
<retrofit.version>1.6.1</retrofit.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.octo.android.robospice</groupId>
<artifactId>robospice</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit</groupId>
<artifactId>retrofit</artifactId>
<version>${retrofit.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit</groupId>
<artifactId>converter-jackson</artifactId>
<version>${retrofit.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
</project>