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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ With Maven:
With Gradle:

```kts
compileOnly("com.eternalcode:eternalcombat-api:2.1.1")
compileOnly("com.eternalcode:eternalcombat-api:2.2.0")
```

With Maven:
Expand All @@ -124,7 +124,7 @@ With Maven:
<dependency>
<groupId>com.eternalcode</groupId>
<artifactId>eternalcombat-api</artifactId>
<version>2.1.1</version>
<version>2.2.0</version>
<scope>provided</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object Versions {
const val MULTIFICATION = "1.2.1"
const val PACKETS_EVENTS = "2.8.0"

const val ADVENTURE_PLATFORM_BUKKIT = "4.4.0"
const val ADVENTURE_PLATFORM_BUKKIT = "4.4.1-SNAPSHOT"
const val ADVENTURE_API = "4.23.0"

const val LITE_COMMANDS = "3.10.0"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/eternalcombat-java.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = "com.eternalcode"
version = "2.1.1"
version = "2.2.0"

tasks.compileJava {
options.compilerArgs = listOf("-Xlint:deprecation", "-parameters")
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/eternalcombat-publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "com.eternalcode"
version = "2.1.1"
version = "2.2.0"

java {
withSourcesJar()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ plugins {

repositories {
mavenCentral()

maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://papermc.io/repo/repository/maven-public/")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://repo.eternalcode.pl/releases")
maven("https://repo.eternalcode.pl/snapshots")
maven("https://storehouse.okaeri.eu/repository/maven-public/")
maven("https://repo.panda-lang.org/releases")
maven("https://maven.enginehub.org/repo/")
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
maven("https://repo.codemc.io/repository/maven-releases/")
maven("https://jitpack.io/")
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,9 @@ public class MessagesSettings extends OkaeriConfig {
"# Configure the combat log notification displayed to players.",
"# You can use the {TIME} variable to display the remaining combat time.",
" ",
"# BossBar progress: Set to -1.0 to show the remaining combat time as a progress bar.",
"# BossBar colors: https://javadoc.io/static/net.kyori/adventure-api/4.14.0/net/kyori/adventure/bossbar/BossBar.Color.html",
"# BossBar overlays: https://javadoc.io/static/net.kyori/adventure-api/4.14.0/net/kyori/adventure/bossbar/BossBar.Overlay.html"
})
public Notice combatNotification = BukkitNotice.builder()
.actionBar("<bold>Combat ends in: <red>{TIME}</red></bold>")
.sound(Sound.ENTITY_EXPERIENCE_ORB_PICKUP, SoundCategory.PLAYERS, 2.0F, 1.0F)
.actionBar("Combat ends in: <red>{TIME}</red>")
.build();

@Comment({
Expand Down
Loading