kor-retrofit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.sefford</groupId> <artifactId>kor-retrofit</artifactId> <version>1.1</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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.sefford</groupId> <artifactId>kor-retrofit</artifactId> <version>1.1</version> <name>kor-retrofit</name> <description>Kor extensions for Retrofit library</description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/Sefford/kor</url> <connection>scm:git:git://github.com/Sefford/kor.git</connection> <developerConnection>scm:git:https://github.com/Sefford/kor.git</developerConnection> </scm> <developers> <developer> <id>sefford</id> <name>Saul Diaz Gonzalez</name> <email>sefford@gmail.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <!-- Libraries --> <kor.commons.version>2.0-SNAPSHOT</kor.commons.version> <jacoco.version>0.7.1.201405082137</jacoco.version> <junit.version>4.11</junit.version> <mockito.version>1.9.5</mockito.version> <retrofit.version>1.6.0</retrofit.version> </properties> <dependencies> <dependency> <groupId>com.sefford</groupId> <artifactId>kor-common</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>com.squareup.retrofit</groupId> <artifactId>retrofit</artifactId> <version>${retrofit.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>${mockito.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> <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> </plugins> </build> </project>