yanlipnican / gooddata-java

GoodData Java SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GoodData Java SDK Build Status Javadocs Maven Central

The GoodData Java SDK encapsulates the REST API of the GoodData Platform. The first version was implemented during the All Data Hackathon April 10 - 11 2014. It is free and open-source software provided "as-is" under the BSD License as an official project by GoodData Corporation.

Usage

The GoodData Java SDK is available in Maven Central Repository, to use it from Maven add to pom.xml:

<dependency>
    <groupId>com.gooddata</groupId>
    <artifactId>gooddata-java</artifactId>
    <version>2.32.0+api1</version>
</dependency>

See releases page for information about versions and notable changes, the Upgrading Guide will navigate you through changes between major versions.

See Javadocs or Wiki for Code Examples and Extensibility How-To.

API version

Since GoodData Java SDK version 2.32.0 API versioning is supported. The API version, GoodData Java is compatible with, is marked in artifact version using +api<NUMBER> suffix (i.e. 2.32.0+api1 is compatible with API version 1).

Dependencies

The GoodData Java SDK uses:

  • the GoodData HTTP client version 0.9.3 or later
  • the Apache HTTP Client version 4.5 or later (for white-labeled domains at least version 4.3.2 is required)
  • the Spring Framework version 4.3.*
  • the Jackson JSON Processor version 2.*
  • the Slf4j API version 1.7.*
  • the Java Development Kit (JDK) version 8 or later

Logging

The GoodData Java SDK logs using slf4j-api. Please adjust your logging configuration for com.gooddata.sdk.* loggers or alternatively turn the logging off using following dependency:

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-nop</artifactId>
    <version>2.32.0+api1</version>
</dependency>

Development

Build the library with mvn package, see the Testing page for different testing methods.

Contribute

Found a bug? Please create an issue. Missing functionality? Contribute your code.

About

GoodData Java SDK

License:Other


Languages

Language:Java 90.9%Language:Groovy 9.0%Language:Shell 0.1%