eclipse-plugin-cvs should not depend on cvs
Bug #592508 reported by
Wu Chujun
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
eclipse (Ubuntu) |
Fix Released
|
Undecided
|
Unassigned |
Bug Description
Currently, eclipse-plugin-cvs package depends on cvs package(the cmdline cvs client), but eclipse-plugin-cvs has its own cvs client written in pure java, it does not use the cvs command from the cvs package afaik, is this dependency unnecessary?
To post a comment you must log in.
Hi
Looking at eclipse/ plugins/ org.eclipse. team.cvs. core/src/ org/eclipse/ team/internal/ ccvs/core/ client/ Command. java (in the source package) heavily suggests that it indeed uses the command-line CVS. Particularly have a look at the method:
private String constructComman dInvocationStri ng(IPath commandRootPath, GlobalOption[] globalOptions, LocalOption[] localOptions, String[] arguments);
~Niels