Skip to content

Commit 4353679

Browse files
committed
Update BotCommands
3.2.0 -> 02443b9abf4f0e18c10ff3f75b922f419c669908-SNAPSHOT
1 parent e924489 commit 4353679

2 files changed

Lines changed: 16 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,24 @@ setupJda(
2727
jdaConfig = DependencyConfig(version = "6.4.2"))
2828

2929
repository(Repository.SRNYX_RELEASES, Repository.SRNYX_SNAPSHOTS)
30+
repositories {
31+
exclusiveContent {
32+
forRepository {
33+
maven("https://repo.freya02.dev/snapshots") {
34+
mavenContent { snapshotsOnly() }
35+
}
36+
}
37+
38+
filter {
39+
includeVersionByRegex("""\Qio.github.freya022\E""", ".+", "[a-f0-9]{40}-SNAPSHOT")
40+
}
41+
}
42+
}
43+
3044
dependencies {
3145
api("xyz.srnyx:java-utilities:c53df5b") // General Java utility library
3246
api("com.google.code.gson:gson:2.3.1") // Use this specific version for Java Utilities
33-
api("io.github.freya022:BotCommands:3.2.0") // Command framework
47+
api("io.github.freya022:BotCommands:02443b9abf4f0e18c10ff3f75b922f419c669908-SNAPSHOT") // Command framework
3448
api("org.spongepowered:configurate-yaml:4.2.0") // Config manager
3549
api("dev.freya02:jda-emojis:4.3.0") // Emojis
3650
implementation("ch.qos.logback:logback-classic:1.5.34") // Logging

src/main/java/xyz/srnyx/lazylibrary/emoji/ApplicationEmojiWrapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* A wrapper for {@link ApplicationEmojiImpl} that adds a custom {@link #toString()} method
1212
*
1313
*/
14-
public final class ApplicationEmojiWrapper extends ApplicationEmojiImpl {
14+
public class ApplicationEmojiWrapper extends ApplicationEmojiImpl {
1515
/**
1616
* Constructs a new ApplicationEmojiWrapper with the provided ApplicationEmoji
1717
*

0 commit comments

Comments
 (0)