Skip to content
This repository was archived by the owner on Dec 31, 2024. It is now read-only.

Commit 2fd72e3

Browse files
committed
1.19 support
1 parent ab8574f commit 2fd72e3

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

pom.xml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@
7272
<pattern>net.kyori</pattern>
7373
<shadedPattern>lol.hyper.bungeeblockversion.adventure</shadedPattern>
7474
</relocation>
75+
<relocation>
76+
<pattern>lol.hyper.githubreleaseapi</pattern>
77+
<shadedPattern>lol.hyper.bungeeblockversion.updater</shadedPattern>
78+
</relocation>
7579
</relocations>
7680
</configuration>
7781
<executions>
@@ -97,17 +101,13 @@
97101
<id>sonatype</id>
98102
<url>https://oss.sonatype.org/content/groups/public/</url>
99103
</repository>
100-
<repository>
101-
<id>CodeMC</id>
102-
<url>https://repo.codemc.org/repository/maven-public</url>
103-
</repository>
104104
</repositories>
105105

106106
<dependencies>
107107
<dependency>
108108
<groupId>net.md-5</groupId>
109109
<artifactId>bungeecord-api</artifactId>
110-
<version>1.17-R0.1-SNAPSHOT</version>
110+
<version>1.19-R0.1-SNAPSHOT</version>
111111
<scope>provided</scope>
112112
</dependency>
113113
<dependency>
@@ -119,17 +119,26 @@
119119
<dependency>
120120
<groupId>lol.hyper</groupId>
121121
<artifactId>github-release-api</artifactId>
122-
<version>1.0.1</version>
122+
<version>1.0.2</version>
123+
<scope>compile</scope>
124+
<exclusions>
125+
<exclusion>
126+
<groupId>org.json</groupId>
127+
<artifactId>json</artifactId>
128+
</exclusion>
129+
</exclusions>
123130
</dependency>
124131
<dependency>
125132
<groupId>net.kyori</groupId>
126133
<artifactId>adventure-text-minimessage</artifactId>
127134
<version>4.11.0</version>
135+
<scope>compile</scope>
128136
</dependency>
129137
<dependency>
130138
<groupId>net.kyori</groupId>
131139
<artifactId>adventure-platform-bungeecord</artifactId>
132140
<version>4.1.0</version>
141+
<scope>compile</scope>
133142
</dependency>
134143
</dependencies>
135144
</project>

src/main/java/lol/hyper/bungeeblockversion/tools/VersionToStrings.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public class VersionToStrings {
5959
versionStrings.put(756, "1.17.1");
6060
versionStrings.put(757, "1.18");
6161
versionStrings.put(758, "1.18.2");
62+
versionStrings.put(759, "1.19");
6263
}
6364

6465
/**

0 commit comments

Comments
 (0)