Documentation menu

Installation

ATick for Java is one Maven dependency. It is a pure-Java, self-contained library — there is no build step, toolchain, or extra setup on your side. Add the dependency and start signing.

Requirements

  • Java 8 or newer (runs on 8, 11, 17, 21, …).
  • A 32-bit or 64-bit JVM — both are supported.

Maven

pom.xml
<dependency>
  <groupId>io.github.aniketc068</groupId>
  <artifactId>atick</artifactId>
  <version>1.0.6</version>
</dependency>

Gradle

build.gradle
implementation 'io.github.aniketc068:atick:1.0.6'
build.gradle.kts
// Kotlin DSL
implementation("io.github.aniketc068:atick:1.0.6")

One artifact, every platform

The same dependency works everywhere the JVM runs — Windows (64/32-bit), Linux and macOS — with nothing extra to install.

PlatformSupported
Windows 64-bityes
Windows 32-bityes
Linux x86-64yes
Linux ARM64yes
macOS Intelyes
macOS Apple Siliconyes

Verify the install

Verify.java
import io.github.aniketc068.atick.Atick;

System.out.println(Atick.version());   // prints the library version, e.g. 1.0.6

Next page →