Package org.gradle.language.base.internal.plugins

Examples of org.gradle.language.base.internal.plugins.CreateSourceTransformTask


        // Finalizing here, as we need this to run after any 'assembling' task (jar, link, etc) is created.
        @Finalize
        void createSourceTransformTasks(final TaskContainer tasks, final BinaryContainer binaries, LanguageRegistry languageRegistry) {
            for (LanguageRegistration<?> language : languageRegistry) {
                for (BinarySpecInternal binary : binaries.withType(BinarySpecInternal.class)) {
                    final CreateSourceTransformTask createRule = new CreateSourceTransformTask(language);
                    createRule.createCompileTasksForBinary(tasks, binary);
                }
            }
        }
View Full Code Here

TOP

Related Classes of org.gradle.language.base.internal.plugins.CreateSourceTransformTask

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.