| Group ID: |
com.chrisdempewolf |
| Artifact ID: |
pinterest-sdk |
| Version: |
1.4 |
| Last modified: |
14.12.2015 20:37 |
| Packaging: |
jar |
| Name: |
pinterest-sdk |
| Description: |
An SDK for Pinterest's version 3.0 API. |
| URL: |
https://github.com/dempe/pinterest |
|
|
| Size: |
41.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/com/chrisdempewolf/pinterest-sdk/1.4/pinterest-sdk-1.4.jar |
| POM: |
Show
hide
<?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>
<groupId>com.chrisdempewolf</groupId>
<artifactId>pinterest-sdk</artifactId>
<name>${project.artifactId}</name>
<description>An SDK for Pinterest's version 3.0 API.</description>
<url>https://github.com/dempe/pinterest</url>
<version>1.4</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<argLine>-Xmx1g</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<goals>deploy</goals>
<checkModificationExcludes>
<checkModificationExclude>pom.xml</checkModificationExclude>
</checkModificationExcludes>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.4</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.3.2</version>
</dependency>
</dependencies>
<prerequisites>
<maven>3.3.0</maven>
</prerequisites>
<developers>
<developer>
<id>dempe</id>
<name>Chris Dempewolf</name>
<roles>
<role>Developer</role>
</roles>
<url>https://github.com/dempe</url>
<email>cldempewolf@gmail.com</email>
<organization>SimplyMeasured/DataRank</organization>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/dempe/pinterest/issues</url>
</issueManagement>
<licenses>
<license>
<name>GNU General Public License, version 3 (GPL-3.0)</name>
<distribution>repo</distribution>
<url>http://opensource.org/licenses/GPL-3.0</url>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:dempe/pinterest.git</connection>
<developerConnection>scm:git:git@github.com:dempe/pinterest.git</developerConnection>
<url>https://github.com/dempe/pinterest</url>
<tag>pinterest-sdk-1.4</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Maven: |
<dependency>
<groupId>com.chrisdempewolf</groupId>
<artifactId>pinterest-sdk</artifactId>
<version>1.4</version>
</dependency>
|
| Gradle: |
com.chrisdempewolf:pinterest-sdk:1.4 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
|
| Dependency Graph: |
Show
Less
More
|