JCL and JVCL have completed the move to GitHub

By | June 3, 2013

Both the JEDI Code Library and the JEDI Visual Component Library completed their move from Sourceforge to GitHub. The SubVersion repositories on Sourceforge are deleted/will be deleted soon.

If you want to use the JCL and JVCL with RAD Studio XE4, you need to clone/download the JCL and JVCL from GitHub. There is no official release for XE4. Further instruction on how to get the XE4 version can be seen in the readme.md file that both projects show on their GitHub page.

JCL : https://github.com/project-jedi/jcl
JVCL: https://github.com/project-jedi/jvcl

Side note: The JVCL doesn’t contain the jvcl\common\jedi\jedi.inc file anymore because it has a dependency on the JCL and that one already has the jedi\jedi.inc file as a submodule.

4 thoughts on “JCL and JVCL have completed the move to GitHub

  1. Lance Rasmussen

    Thanks for doing this. I think will be much easier with GitHub.

    I modified the bat file you provided in earlier post to this:

    git clone git://github.com/project-jedi/jcl.git jcl
    cd jcl
    git submodule init
    git submodule update
    cd ..

    git clone git://github.com/project-jedi/jvcl.git jvcl
    cd jvcl
    git submodule init
    git submodule update
    cd ..

    cd jcl\jcl
    install.bat

    cd ..\..\jvcl
    install.bat

    1. Andreas Hausladen Post author

      The JVCL doesn’t have submodules. So the “git submodule …” isn’t necessary for it. And the JCL’s install.bat will take care of the submodule. So it is enough to just clone both repositories and start install.bat on both.

  2. Eric

    Maybe rather than deprecate, the SVN could be kept for major releases? (updating from git periodically)

    There has to be many people with the svn checked out.

Comments are closed.