Unable to create SVNRepository object

I think you are missing at least the library setup stuff:

 

    /*
     * Initializes the library to work with a repository via 
     * different protocols.
     */
    private static void setupLibrary() {
        /*
         * For using over http:// and https://
         */
        DAVRepositoryFactory.setup();
        /*
         * For using over svn:// and svn+xxx://
         */
        SVNRepositoryFactoryImpl.setup();
        
        /*
         * For using over file:///
         */
        FSRepositoryFactory.setup();
    }
posted @ 2013-10-28 15:59  adrianlamo  阅读(716)  评论(0编辑  收藏  举报