When I deploy a successfully build Maven Project, from Eclipse, to Tomcat: the application complains that the jar file is not found.
Steps taken:
1) Installed JAR in local Maven repository:
mvn install:install-file -Dfile=xmlrpc-1.1.jar -DgroupId=org.apache -DartifactId=xmlrpc -Dversion=1.1 -Dpackaging=jar
2) Edited the POM file in Eclipse with:
<dependency>
<groupId>org.apache</groupId>
<artifactId>xmlrpc</artifactId>
<version>1.1</version>
</dependency>
3) Synchronized the Maven dependency to the build path of Eclipse:
mvn eclipse:eclipse
Any tips on steps to take?
NB: I do not plan to make the jar available in a public repository; as far as I know this particular jar file is not available from a public repository (class file required is: org/apache/xmlrpc/Base64).