Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for file_collection_to_classpath (0.36 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

                        displayedFilePaths
                    ))
                    .withAdvice("Add the individual files to the file collection instead.")
                    .withUpgradeGuideSection(7, "file_collection_to_classpath")
                    .build();
            }
        }
    
        @Override
        public boolean contains(File file) {
            return getFiles().contains(file);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocIntegrationTest.groovy

                " Add the individual files to the file collection instead." +
                " Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#file_collection_to_classpath")
        }
    
        private def stylesheetFileRelativePath(String name) {
            if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_22)) {
                return "resource-files/$name"
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

                " Add the individual files to the file collection instead." +
                " Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#file_collection_to_classpath")
        }
    
        @ToBeImplemented
        @Issue('https://github.com/gradle/gradle/issues/29147')
        def "can connect transformed incoming elements of a configuration to task input ListProperty"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                " Add the individual files to the file collection instead." +
                " Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#file_collection_to_classpath")
        }
    
        def "deletes empty packages dirs"() {
            given:
            buildFile << """
                apply plugin: 'java'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top