Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
cache: gradle
- name: Build with Gradle
# This just publishes to the local file system; jreleaser is responsible for uploading to maven central
run: ./gradlew publish
run: ./gradlew publish -Psnapshot=true
- name: Upload to Maven Central Snapshots
env:
# Needs to have access to the io.github.ArchipelagoMW namespace in maven central
Expand Down
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ plugins {
id("org.jreleaser") version "1.19.0"
}

val snapshot = providers.gradleProperty("snapshot").getOrElse("false")
group = "io.github.archipelagomw"
version = "0.2.0"
version = "0.2.1" + if("true" == snapshot) "-SNAPSHOT" else ""

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package io.github.archipelagomw.events;

/**
* event that is fired whenever you receive a death link from another player. must first enable death links via {@link dev.koifysh.archipelago.helper.DeathLink}
* event that is fired whenever you receive a death link from another player. must first enable death links via {@link io.github.archipelagomw.Client#setDeathLinkEnabled(boolean)}
*/
public class DeathLinkEvent implements Event {

Expand Down