Group ID:
com.bynder
Artifact ID:
orbit-java-sdk
Version:
1.0.0
Last modified:
28.03.2018 13:27
Packaging:
jar
Name:
Orbit Java SDK
Description:
The main goal of this SDK is to speed up the integration of Bynder Orbit users in
JAVA.
Making it easier to connect to the Orbit API and executing requests on it.
URL:
https://www.bynder.com/en/orbit/
License:
MIT License
Source:
https://github.com/Bynder/orbit-java-sdk
Developers:
Bynder
Size:
51.0 KB
Download:
https://repo.maven.apache.org/maven2/com/bynder/orbit-java-sdk/1.0.0/orbit-java-sdk-1.0.0.jar
POM:
Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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.bynder</groupId>
<artifactId>orbit-java-sdk</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>Orbit Java SDK</name>
<description>The main goal of this SDK is to speed up the integration of Bynder Orbit users in
JAVA.
Making it easier to connect to the Orbit API and executing requests on it.
</description>
<url>https://www.bynder.com/en/orbit/</url>
<distributionManagement>
<snapshotRepository>
<id>bynder.mvn.snapshots</id>
<url>http://tibidabo.bynder.io:8081/repository/maven-snapshots/</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Bynder</name>
<email>support@bynder.com</email>
<organization>Bynder BV</organization>
<organizationUrl>https://www.bynder.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/Bynder/orbit-java-sdk.git</connection>
<developerConnection>scm:git:git@github.com:Bynder/orbit-java-sdk.git</developerConnection>
<url>https://github.com/Bynder/orbit-java-sdk</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>io.reactivex.rxjava2</groupId>
<artifactId>rxjava</artifactId>
<version>2.1.9</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>adapter-rxjava2</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-gson</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>24.0-jre</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.7.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.7.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>devcsrj.okhttp3</groupId>
<artifactId>slf4j-logging-interceptor</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</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>3.0.1</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.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</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>
<plugin>
<groupId>net.orfjackal.retrolambda</groupId>
<artifactId>retrolambda-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<defaultMethods>true</defaultMethods>
</configuration>
<executions>
<execution>
<goals>
<goal>process-main</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20.1</version>
<configuration>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>
Maven:
<dependency>
<groupId>com.bynder </groupId>
<artifactId>orbit-java-sdk </artifactId>
<version>1.0.0 </version>
</dependency>
Gradle:
com.bynder :orbit-java-sdk :1.0.0
Contained classes:
Show all
Contained classes:
Dependencies:
Dependency Graph:
Show
Less
More