For a migration study, I'm trying to make a test: a conversion of a clearcase VOB to SVN database.
I think I've configured correctly the file config.properties:
Code: Select all
srcprovider=cc
...
cc.class=org.polarion.svnimporter.ccprovider.CCProvider
cc.executable=C:/Program Files/Rational/ClearCase/bin/cleartool.exe
cc.projectpath=//Mycomp/vob_ville/abc.vbs/
cc.log.dateformat=yyyyMMdd.HHmmss
cc.log.encoding=Cp1251
cc.tempdir=c:/temp/ng/
cc.verbose_exec=yes
In history.log, I find:
Code: Select all
mode: create full dump
src provider: class org.polarion.svnimporter.ccprovider.CCProvider
creating full svn model...
EXCEPTION CAUGHT: org.polarion.svnimporter.ccprovider.CCException: error during execution command C:/Program Files/Rational/ClearCase/bin/cleartool.exe lshistory -recurse -fmt %Nd@@@%En@@@%Vn@@@%o@@@!%l@@@!%a@@@%m@@@%u@@@%Nc@@@\n: wrong project path "\\Mycomp\vob_ville\abc.vbs"
at org.polarion.svnimporter.ccprovider.CCProvider.executeCommand(CCProvider.java:247)
at org.polarion.svnimporter.ccprovider.CCProvider.buildCCModel(CCProvider.java:171)
at org.polarion.svnimporter.ccprovider.CCProvider.buildSvnModel(CCProvider.java:127)
at org.polarion.svnimporter.main.Main.buildFullSvnModel(Main.java:147)
at org.polarion.svnimporter.main.Main.run(Main.java:82)
at org.polarion.svnimporter.main.Main.main(Main.java:49)
Maybe I don't understand what is a "project path" for CC?
In the example below, I use UNC Path, but I have tried with a local copy of abc.vbs directory, and the error returned is the same.
JRE used is 1.4.2
Thanks for your answers.