java - Jenkins Octopus Integration -


i using jenkins ci tool , using octopus deploy java application. when surfed, solutions deploy .net application using octopack. how pack java application , automatically deploy octopus server jenkins instance?

you can pack nuget (with nuget pack command, documented here). that's octopack does. create .nuspec file, , in <files> section, include files want empty target. example, include files in package:

... <files>     <file src="path/to/output/**" target="" /> </files> ... 

you can push octopus deploy system using nuget push. instructions on octopus deploy package library page.


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -