Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for file_collection_to_classpath (0.22 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)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In version 7.5 and above, Gradle consistently sets the current working directory for the Checkstyle task to `$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>/workers`.
    
    === Deprecations
    
    [[file_collection_to_classpath]]
    ==== Converting files to a classpath where paths contain file separator
    
    Java has the concept of a path separator which is used to separate individual paths in a list of paths, for example in a classpath string.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top