I create a Jenkins job which uploads my war file to elastic beanstalk. But when I start to build it gives error java.lang.IllegalArgumentException: Root Object doesn't exist
Asked
Active
Viewed 460 times
1
1 Answers
1
This error occurs because you used a variable ($) and wildcard name (*.war).
Elastic Beanstalk plugin does not support Variable or wildcard name in the Value.
I suggest a use full path of Jenkins job instead of ${WORKSPACE} and full war name like ROOT.war instead of *.war
Subhash
- 1,586
- 11
- 18
