Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for processResource (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/scalaPluginTasks.graphml

              <y:Shape type="roundrectangle"/>
            </y:ShapeNode>
          </data>
        </node>
        <node id="n4">
          <data key="d6">
            <y:ShapeNode>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileFilesFactory.java

                return new DefaultIncrementalCompilation(current.snapshot(), toRecompile, getRemovedSources(), existingHeaders, hasUnresolvedHeaders);
            }
    
            @Override
            public void processSource(File sourceFile) {
                if (visitSourceFile(sourceFile)) {
                    toRecompile.add(sourceFile);
                }
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    === What does it look like
    
    Let us start with a project using the Java plugin which has a few Java source files. We run the build the first time.
    
    ----
    > gradle --build-cache compileJava
    :compileJava
    :processResources
    :classes
    :jar
    :assemble
    
    BUILD SUCCESSFUL
    ----
    
    We see the directory used by the local build cache in the output. Apart from that the build was the same as without the build cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    The task's name follows the convention of `process__SourceSet__Resources` — or `processResources` for the `main` source set — and it will automatically copy any files in _src/[sourceSet]/resources_ to a directory that will be included in the production JAR. This target directory will also be included in the runtime classpath of the tests.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    ------------------------------------------------------------
    
    Other tasks
    -----------
    compileJava - Compiles main Java source.
    compileTestJava - Compiles test Java source.
    hello
    processResources - Processes main resources.
    processTestResources - Processes test resources.
    startScripts - Creates OS-specific scripts to run the project as a JVM application.
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/javaPluginTasks.graphml

              <y:Shape type="roundrectangle"/>
            </y:ShapeNode>
          </data>
        </node>
        <node id="n1">
          <data key="d6">
            <y:ShapeNode>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            scenario              | token       | expectedDirName     | executed           | notExec
            'class directory'     | 'CLASSES'   | 'classes/java/main' | 'compileJava'      | 'processResources'
            'resources directory' | 'RESOURCES' | 'resources/main'    | 'processResources' | 'compileJava'
        }
    
        @Issue("gradle/gradle#1347")
        def "compile classpath snapshotting ignores non-relevant elements"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

        static final String API_CONFIGURATION = JvmConstants.API_CONFIGURATION_NAME;
        static final String JAR_TASK = "jar";
        static final String PROCESS_RESOURCES_TASK = "processResources";
        static final String GRADLE_PLUGINS = "gradle-plugins";
        static final String PLUGIN_DESCRIPTOR_PATTERN = "META-INF/" + GRADLE_PLUGINS + "/*.properties";
        static final String CLASSES_PATTERN = "**/*.class";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

            then:
            events.trees == events.tasks
            assertTaskOperationSuccessfulOrSkippedWithNoSource(":compileJava")
            assertTaskOperationSuccessfulOrSkippedWithNoSource(":processResources")
            events.operation("Task :classes").successful
            events.operation("Task :compileTestJava").successful
            assertTaskOperationSuccessfulOrSkippedWithNoSource(":processTestResources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    This means that the property `classpath` changed and some file on the runtime classpath actually did change.
    Looking deeper into this, we actually see that the inputs for the task `processResources` changed in that project, too.
    Finally, we find this in our build file:
    
    ====
    include::sample[dir="snippets/buildCache/normalization/kotlin",files="build.gradle.kts[tags=versionInfo]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top