-
-
Notifications
You must be signed in to change notification settings - Fork 77
API Dependency Information
Jason Penilla edited this page Sep 17, 2026
·
13 revisions
Releases are published to Maven Central
Using snapshot builds
Snapshot builds are available on the Sonatype snapshots maven repository:
https://central.sonatype.com/repository/maven-snapshots/Consult your build tool's documentation for details on adding maven repositories to your project.
Maven
<dependency>
<groupId>xyz.jpenilla</groupId>
<artifactId>squaremap-api</artifactId>
<version>1.4.0</version>
<scope>provided</scope>
</dependency>Gradle
repositories {
mavenCentral()
}
dependencies {
compileOnly("xyz.jpenilla", "squaremap-api", "1.4.0")
}