Skip to content
This repository has been archived by the owner on Oct 19, 2019. It is now read-only.

Latest commit

 

History

History
52 lines (45 loc) · 1.34 KB

README.md

File metadata and controls

52 lines (45 loc) · 1.34 KB

Asana4J Build Status

An unofficial Java client library for the Asana API v1.0.

License

This library licensed under the MIT License (MIT)

Current status

Features

  • Authentication - ok (Api Key, Implicit Grant, Authorization Code Grant, Personal Access Token)
  • API options - ok
  • Errors - basic handling
  • Custom External Data - ok

Entities

  • Attachments - ok
  • Events - no support
  • Projects - ok
  • Stories - ok
  • Tags - ok
  • Tasks - ok (except the membership field)
  • Teams - ok
  • Typeahead - no support
  • Users - ok
  • Webhooks - no support
  • Workspaces - ok

Requirements & dependencies

Building The Code

Clone the repo and perform the following command from the root directory:

mvn clean install -P all

Usage & examples

You can add this library to your project via maven dependencies:

<dependency>
  <groupId>ru.jewelline.asana4j</groupId>
  <artifactId>api</artifactId>
  <version>1.0.0</version>
</dependency>
<dependency>
  <groupId>ru.jewelline.asana4j</groupId>
  <artifactId>core</artifactId>
  <version>1.0.0</version>
</dependency>

See examples in the /examples sub-directory