Show / Hide Table of Contents

Getting Started

To use the SDK for Java, you must have:

  • A suitable Java Development Environment
  • A Language Weaver or Language Weaver Edge account
  • API credentials

Java Development Environment

The Java SDK requires J2SE Development Kit 8.0 or later. You can download the latest Java software from http://www.oracle.com/technetwork/java/javase/downloads/.

Include SDK in your Project

If you use Apache Maven, you can specify the SDK as dependency in your project. For this, the SDK must be added under the dependencies section from your pom.xml:

<dependencies>
    <dependency>
        <groupId>com.languageweaver.sdk</groupId>
        <artifactId>lw-sdk</artifactId>
        <version>${lw-sdk.version}</version>
    </dependency>
</dependencies>

Where lw-sdk.version must be replaced with the latest SDK version from Maven Central.

Download SDK

If you build your project using Apache Ant or by any other means, you can download the needed version of SDK from Maven Central.

In This Page
  • Java Development Environment
  • Include SDK in your Project
  • Download SDK
Back to top