Issue
How to make this possible ?
I had a set of jar files which are to be included to CLASSPATH variable.
I don't want to give the command SET CLASSPATH=xxx.jar;xx.jar;..
as part of the build step.
I dont' want to manually set the Environment variable CLASSPATH as part of system properties.
I tried by copying a set of jar files into Jenkins_HOME/war/WEB-INF/lib
and had started the Jenkins server. But couldn't make it possible... Any Solution ?
Solution
Set CLASSPATH environment as follows and any jar file updated it particular directory
SET CLASSPATH=<your_lib_directory>\*
This will pick up all the updated JAR files
Answered By - Harshavardhan Konakanchi