java - Making Eclipse's subversive auto update and perform a maven build on schedule? -
i have right 2 maven projects on eclipse mars installation, project a, , project b, depends on a. idea perform svn -> update head of both projects, maven -> build/install of project a, same project b, when arrive @ work date.
i've been looking around , seems last questions on topic years ago , suggested setup continuous integration server on machine. problem that, reason, i'm not machine admin (been given configured installation), seems installing jenkins out of question.
so, there's way automate, through eclipse, process?
you may doing outside eclipse using schedule service of os
for windows:
go start menu -> programs -> accessories -> system tools -> task scheduler , follow instructions here
for linux: use crontab.
the maven command svn updat mvn scm:update
. may combine build command e.g. mvn scm:update clean install
write commands in batch(win)/sh(linux) file according os , manage execution schedule service mentioned above.
hope helps.
Comments
Post a Comment