Package org.gradle.api.internal.tasks.compile.incremental.jar

Examples of org.gradle.api.internal.tasks.compile.incremental.jar.JarChangeProcessor


    public RecompilationSpec provideRecompilationSpec(IncrementalTaskInputs inputs, PreviousCompilation previousCompilation, JarClasspathSnapshot jarClasspathSnapshot) {
        //creating an action that will be executed against all changes
        RecompilationSpec spec = new RecompilationSpec();
        JavaChangeProcessor javaChangeProcessor = new JavaChangeProcessor(previousCompilation, sourceToNameConverter);
        JarChangeProcessor jarChangeProcessor = new JarChangeProcessor(fileOperations, jarClasspathSnapshot, previousCompilation);
        InputChangeAction action = new InputChangeAction(spec, javaChangeProcessor, jarChangeProcessor);

        //go!
        inputs.outOfDate(action);
        if (action.spec.getFullRebuildCause() != null) {
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.tasks.compile.incremental.jar.JarChangeProcessor

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.