I am trying to add an external tigase-muc JAR file to a maven tigase-server based project in an eclipse environment.
I tried the following method
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> \ -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging> [INFO] Scanning for projects... [INFO] [INFO] Building Tigase XMPP Server 5.1.0 5.2.0-SNAPSHOT [INFO]
From the BUILD SUCCESS post above, I assume the JAR file is correctly added, but when I add the following dependency in the POM file
<dependency> <groupId>tigase</groupId> <artifactId>tigase-xmltools</artifactId> <version>3.3.6</version> <scope>compile</scope> </dependency>
This gives me the following error The tigase artifact is missing: tigase-muc . This message clearly indicates that he did not receive the JAR file, which I refer to the dependency
Your input will be highly appreciated THANKS.
source share