0

I have an use case where I need to download selected jar files from nexus repository to a Jenkins job workspace and run a program over the downloaded jar files. (I Want to use the .class files in the jars)

Is there any Jenkins plugin available for this?

Shahar Hamuzim Rajuan
  • 5,610
  • 9
  • 53
  • 91
sathishvisa
  • 315
  • 1
  • 5
  • 16

2 Answers2

0

You could try the groovy plugin and embed a script within your Jenkins job

Mark O'Connor
  • 76,015
  • 10
  • 139
  • 185
0

Add a build-step in the job, prior to the one doing the actual work
and use a copy (or ftp) command to get the files.

Gonen
  • 4,005
  • 1
  • 31
  • 39