⏱
17 mins remaining
Java
Learn how the Java SDK works
Steps in this module
Installation
Requirements
There are two requirements for developing with at_java
on your machine.
- Java 8 or higher
- Maven
- A code editor, see getting started with Java
Compile JAR
If you’d like to use at_java as a dependency, you can compile at_java
into a JAR by following the instructions below:
cd at_client
to be in the at_client directory.mvn install
- JAR file created in
target/
named similarly toclient-1.0-SNAPSHOT.jar
- If you run into dependency issues, you may need to add the dependencies used by the
at_java
. Look inat_client/pom.xml
and copy everything within the<dependencies></dependencies>
tags and paste that in yourpom.xml
that you have in your Java project.
Maven Dependency
Under construction
Cloning the Client
If you’d like to make contributions or edit the client yourself, make a form of the repository by heading to the repository and clicking “Fork” to fork the repository on your own GitHub account.
Once forked, you can make changes to your own fork version of the repository.
Get it on your local machine by doing the following (.
is the directory you want to clone the repository in; in this case, we are cloning it in our current directory so be sure to cd
into the directory you want the repository in):
git clone https://github.com/<YOUR_GITHUB_USERNAME>/at_java.git .