Hi all,
I have to run, each day, formating and ckecking source code errors for all
my projects. To do that i will use Maven (and Jalopy, and Checkstyle) but
the problem is that i have to ckeckout au-to-ma-ti-ca-ly all my lastest
projects in all my branches on my cvs server.
I have :
BRANCH001 -------------
project001_version_2.0.0
project001_version_1.0.0
project002_version_2.0.0
project002_version_1.0.0
BRANCH002 -------------
project003_version_2.0.0
project003_version_1.0.0
project004_version_2.0.0
project004_version_1.0.0
BRANCH003 -------------
project005_version_2.0.0
project005_version_1.0.0
project006_version_2.0.0
project006_version_1.0.0
I want :
/file/
/file/BRANCH001
/file/BRANCH001/project001_version_2.0.0
/file/BRANCH001/project002_version_2.0.0
/file/BRANCH002
/file/BRANCH002/project003_version_2.0.0
/file/BRANCH002/project004_version_2.0.0
/file/BRANCH003
/file/BRANCH003/project005_version_2.0.0
/file/BRANCH003/project006_version_2.0.0
I don't see anywhere in cvs documentation a command to retrieve a list of
branches, but i think it is possible because the CVS Repository Explorer for
Eclipse (for example) do that.
Any Maven user has already tried to do that ?
Thanks for help.
Sid