-
-
Notifications
You must be signed in to change notification settings - Fork 41
API Dependency Information
Jason edited this page Oct 1, 2023
·
11 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.2.1</version>
<scope>provided</scope>
</dependency>
Gradle
repositories {
mavenCentral()
}
dependencies {
compileOnly("xyz.jpenilla", "squaremap-api", "1.2.1")
}