A great item solution for your RPG server. https://phoenixdevt.fr/
Go to file
2021-06-12 13:22:44 +00:00
.m2 Add new file 2020-07-27 21:55:33 -07:00
local-repo/net/Indyuce/mmoitems/lib Local repo for jar libs is fine 2021-06-12 15:15:34 +02:00
src/main Local repo for jar libs 2021-06-12 14:06:54 +02:00
.gitignore Update .gitignore 2020-11-22 07:09:14 -07:00
.gitlab-ci.yml Update .gitlab-ci.yml file 2021-05-29 23:33:27 +00:00
pom.xml Local repo for jar libs is fine 2021-06-12 15:15:34 +02:00
README.md Update README.md 2021-06-12 13:22:44 +00:00

Private repository for MMOItems Premium.

Issues: https://git.lumine.io/mythiccraft/mmoitems/-/issues
Wiki: https://git.lumine.io/mythiccraft/mmoitems/-/wikis/home

How to add or update a dependency to the local repository

  1. Get the jar file you want to add as a dependency and place it on your desktop
  2. You'll need to deploy your jar as a maven artifact for Maven to recognize the jar as a potential dependency. For that you can use the command in your command prompt:
mvn deploy:deploy-file -Durl=file:///C:\Users\cympe\Desktop -DgroupId=net.Indyuce.mmoitems.lib -Dpackaging=jar -Dfile=<JarFileName>.jar -DartifactId=<ArtifactName> -Dversion=<ArtifactVersion>

where 1.0 is replaced by the artifact version

This will generate a folder that you can place in the MI local repo.

  1. Head to the MMOItems pom.xml config file and add a dependency:
<dependency>
	<groupId>net.Indyuce.mmoitems.lib</groupId>
	<artifactId>ArtifactName</artifactId>
	<version>ArtifactVersion</version>
</dependency>

The artifact names and versions must match in order for the dependency to be recognized.