diff --git a/pom.xml b/pom.xml
index 2d98dd5bc..cf62879d3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,7 +68,7 @@
2.0.9
3.12.8
- 1.19-R0.1-SNAPSHOT
+ 1.19.2-R0.1-SNAPSHOT
1.19-R0.1-SNAPSHOT
@@ -171,6 +171,11 @@
minecraft-repo
https://libraries.minecraft.net/
+
+
+ nms-repo
+ https://repo.codemc.io/repository/nms/
+
diff --git a/src/main/java/world/bentobox/bentobox/versions/ServerCompatibility.java b/src/main/java/world/bentobox/bentobox/versions/ServerCompatibility.java
index 8e534198d..bb5f140cd 100644
--- a/src/main/java/world/bentobox/bentobox/versions/ServerCompatibility.java
+++ b/src/main/java/world/bentobox/bentobox/versions/ServerCompatibility.java
@@ -206,6 +206,10 @@ public class ServerCompatibility {
* @since 1.21.0
*/
V1_19_1(Compatibility.COMPATIBLE),
+ /**
+ * @since 1.21.0
+ */
+ V1_19_2(Compatibility.COMPATIBLE),
;
private final Compatibility compatibility;