Skip to content

Commit 301b6aa

Browse files
committed
fix: missing version reference
1 parent 2f64594 commit 301b6aa

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

zip-common/src/main/java/net/imprex/zip/common/MinecraftVersion.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ private static final class NmsMapping {
1919
private static final List<NmsMapping> MAPPINGS = new ArrayList<>();
2020

2121
static {
22+
MAPPINGS.add(new NmsMapping("1.21.6", "v1_21_R5"));
2223
MAPPINGS.add(new NmsMapping("1.21.5", "v1_21_R4"));
2324
MAPPINGS.add(new NmsMapping("1.21.4", "v1_21_R3"));
2425
MAPPINGS.add(new NmsMapping("1.21.3", "v1_21_R2"));

zip-plugin/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,5 +113,11 @@
113113
<version>${revision}</version>
114114
<scope>compile</scope>
115115
</dependency>
116+
<dependency>
117+
<groupId>net.imprex</groupId>
118+
<artifactId>zip-nms-v1_21_R5</artifactId>
119+
<version>${revision}</version>
120+
<scope>compile</scope>
121+
</dependency>
116122
</dependencies>
117123
</project>

0 commit comments

Comments
 (0)