I am in the windows and better able to deal with the situation, create a consolidated folder d:\opengroksrcthat contains all my scattered source directories as directory transitions
Example. I have a project in d: \ gitsrc and another project in d: \ hacksrc. I created a folder named d: \ opengroksrc
d:\opengroksrc
'-gitsrc => hardlink to d:\gitsrc
'-hacksrc => hardlink to d:\hacksrc
mklink /j d:\opengroksrc\gitsrc d:\gitsrc can be used to create a connection for a directory in windows
and in mine web.xmlI point out that my source actually comes fromd:\opengroksrc
<context-param>
<param-name>SRC_ROOT</param-name>
<param-value>D:\opengroksrc\</param-value>
</context-param>
And finally, for indexing
java -jar E:\opengrok\lib\opengrok.jar -a on -t 4 -W E:\opengrok\configuration.xml -c C:\Windows\ctags.exe -P -S -v -s D:\opengroksrc -d E:\opengrok\grokdata -I *.cs -I *.c -I *.cpp -I *.h -I *.xml
source
share