Package com.atlassian.maven.plugin.clover.internal.instrumentation

Examples of com.atlassian.maven.plugin.clover.internal.instrumentation.MainInstrumenter


        super.execute();

        logArtifacts( "before changes" );

        // Instrument both the main sources and the test sources if the user has configured it
        final MainInstrumenter mainInstrumenter = new MainInstrumenter( this, cloverOutputSourceDirectory );
        final TestInstrumenter testInstrumenter = new TestInstrumenter( this, cloverOutputTestSourceDirectory );

        if ( isJavaProject() )
        {
            mainInstrumenter.instrument();
            if ( this.includesTestSourceRoots )
            {
                testInstrumenter.instrument();
            }
        }

        addCloverDependencyToCompileClasspath();
        injectGrover(outDir);

        swizzleCloverDependencies();
        // Modify Maven model so that it points to the new source directories and to the clovered
        // artifacts instead of the original values.
        String originalSrcDir = mainInstrumenter.redirectSourceDirectories();
        originalSrcMap.put(getProject().getArtifactId(), originalSrcDir);
        if ( this.includesTestSourceRoots )
        {
            String originalSrcTestDir = testInstrumenter.redirectSourceDirectories();
            originalSrcTestMap.put(getProject().getArtifactId(), originalSrcTestDir);
View Full Code Here


    }

    public static void resetSrcDirsOriginal(Artifact artifact, CompilerConfiguration config) {
        if (originalSrcMap.containsKey(artifact.getArtifactId())) {
            final String sourceDirectory = (String) originalSrcMap.get(artifact.getArtifactId());
            MainInstrumenter mainInstrumenter =
                    new MainInstrumenter(config, sourceDirectory);
            mainInstrumenter.redirectSourceDirectories();

        }
        if (originalSrcTestMap.containsKey(artifact.getArtifactId())) {
            final String testDirectory = (String)originalSrcTestMap.get(artifact.getArtifactId());
            TestInstrumenter instrumenter =
View Full Code Here

TOP

Related Classes of com.atlassian.maven.plugin.clover.internal.instrumentation.MainInstrumenter

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.