Update pom

This commit is contained in:
Magnus Ulf 2020-12-16 19:20:51 +01:00
parent 674e8e37c8
commit db0dd57ada
2 changed files with 24 additions and 11 deletions

1
.gitignore vendored
View File

@ -90,6 +90,7 @@ local.properties
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff:
.idea/*
.idea/workspace.xml
.idea/tasks.xml
.idea/dictionaries

34
pom.xml
View File

@ -47,8 +47,8 @@
<massiveHttpclientVersion>4.5.3</massiveHttpclientVersion>
<!-- https://hub.spigotmc.org/nexus/content/groups/public/org/spigotmc/spigot-api/ -->
<massiveSpigotVersion>1.15.1-R0.1-SNAPSHOT</massiveSpigotVersion>
<massivePaperVersion>1.15.1-R0.1-SNAPSHOT</massivePaperVersion>
<massiveSpigotVersion>1.16.4-R0.1-SNAPSHOT</massiveSpigotVersion>
<massivePaperVersion>1.16.4-R0.1-SNAPSHOT</massivePaperVersion>
<!-- http://nexus.hc.to/content/repositories/pub_releases/net/milkbowl/vault/Vault/ -->
<massiveVaultVersion>1.5.6</massiveVaultVersion>
@ -62,7 +62,7 @@
<massiveWorldEditVersion>7.0.1</massiveWorldEditVersion>
<!-- http://maven.sk89q.com/repo/com/sk89q/worldguard/worldguard-legacy/ -->
<massiveWorldGuardVersion>7.0.2</massiveWorldGuardVersion>
<massiveWorldGuardVersion>7.0.4</massiveWorldGuardVersion>
<!-- http://repo.dmulloy2.net/content/repositories/public/com/comphenix/protocol/ProtocolLib/ -->
<massiveProtocolLibVersion>4.3.0</massiveProtocolLibVersion>
@ -71,10 +71,10 @@
<massiveVotifierVersion>1.9</massiveVotifierVersion>
<!-- https://github.com/kangarko/ChatControl-Pro/wiki/Developer-API -->
<massiveMineverseChatVersion>2.14.0</massiveMineverseChatVersion>
<massiveMineverseChatVersion>2.20.2</massiveMineverseChatVersion>
<!-- http://repo.mikeprimm.com/us/dynmap/dynmap/ -->
<massiveDynmapVersion>3.0-SNAPSHOT</massiveDynmapVersion>
<massiveDynmapVersion>3.1-beta5</massiveDynmapVersion>
<!-- ~~~~~~~~~~~~~~~ -->
<!-- Custom Versions -->
@ -113,7 +113,7 @@
<!-- WorldEdit and WorldGuard -->
<repository>
<id>sk89q-repo</id>
<url>http://maven.sk89q.com/repo/</url>
<url>https://maven.enginehub.org/repo/</url>
</repository>
<!-- ProtocolLib -->
<repository>
@ -325,7 +325,7 @@
</dependency>
<dependency>
<groupId>com.sk89q.worldguard</groupId>
<artifactId>worldguard-legacy</artifactId>
<artifactId>worldguard-bukkit</artifactId>
<version>${massiveWorldGuardVersion}</version>
<scope>provided</scope>
</dependency>
@ -362,8 +362,8 @@
<!--
Page: https://www.spigotmc.org/resources/dynmap.274/
Intall: mvn install:install-file -DgroupId=us.dynmap -DartifactId=dynmap -Dversion=3.0-SNAPSHOT -Dpackaging=jar -Dfile=dynmap.jar
Test: mvn dependency:get -Dartifact=us.dynmap:dynmap:3.0-SNAPSHOT
Intall: mvn install:install-file -DgroupId=us.dynmap -DartifactId=dynmap -Dversion=3.1-beta5 -Dpackaging=jar -Dfile=Dynmap-3.1-beta5-spigot.jar
Test: mvn dependency:get -Dartifact=us.dynmap:dynmap:3.1-beta5
-->
<dependency>
<groupId>us.dynmap</groupId>
@ -387,8 +387,8 @@
<!--
Page: https://www.spigotmc.org/resources/venturechat.771/
Intall: mvn install:install-file -DgroupId=mineverse.Aust1n46.chat -DartifactId=MineverseChat -Dversion=2.14.0 -Dpackaging=jar -Dfile=VentureChat.jar
Test: mvn dependency:get -Dartifact=mineverse.Aust1n46.chat:MineverseChat:2.14.0
Intall: mvn install:install-file -DgroupId=mineverse.Aust1n46.chat -DartifactId=MineverseChat -Dversion=2.20.2 -Dpackaging=jar -Dfile=VentureChat2.22.2.jar
Test: mvn dependency:get -Dartifact=mineverse.Aust1n46.chat:MineverseChat:2.20.2
-->
<dependency>
<groupId>mineverse.Aust1n46.chat</groupId>
@ -597,6 +597,18 @@
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.massivecraft.massivebasic</groupId>
<artifactId>MassiveBasic</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.massivecraft.massiveperms</groupId>
<artifactId>MassivePerms</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>