-
-
Notifications
You must be signed in to change notification settings - Fork 54
API Dependency Information
Jason Penilla edited this page Apr 28, 2025
·
12 revisions
Releases are published to Maven Central
Using snapshot builds
Snapshot builds are available on the Sonatype snapshots maven repository:
https://s01.oss.sonatype.org/content/repositories/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.3.5</version>
<scope>provided</scope>
</dependency>Gradle
repositories {
mavenCentral()
}
dependencies {
compileOnly("xyz.jpenilla", "squaremap-api", "1.3.5")
}