Package org.evolizer.versioncontrol.git.importer

Examples of org.evolizer.versioncontrol.git.importer.EvolizerGitImporter


        EvolizerSessionHandler handler = EvolizerSessionHandler.getHandler();
        try {
            handler.updateSchema(fProject);
            IEvolizerSession persistenceProvider = handler.getCurrentSession(fProject);
            EvolizerGitImporter importer =
                    new EvolizerGitImporter(
                            fProject.getLocation().toString(),
                            persistenceProvider,
                            fFileExtensionRegEx,
                            monitor);
            importer.importProject();
            persistenceProvider.close();
        } catch (EvolizerException e) {
            LOGGER.error("Error while importing versioning history for project " + fProject.getName(), e);
            return Status.CANCEL_STATUS;
        } catch (GitImporterException e) {
View Full Code Here


        propertiesInputStream.close();

        try {
            sImporter =
                    new EvolizerGitImporter(
                            "./git_test_repo/",
                            sSession,
                            ".java",
                            null);
            sImporter.importProject();
View Full Code Here

TOP

Related Classes of org.evolizer.versioncontrol.git.importer.EvolizerGitImporter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.