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.
| Platform | Supported |
|---|---|
| Windows 64-bit | yes |
| Windows 32-bit | yes |
| Linux x86-64 | yes |
| Linux ARM64 | yes |
| macOS Intel | yes |
| macOS Apple Silicon | yes |
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