Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for currentClasspath (0.82 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

            attributes.attribute(DocsType.DOCS_TYPE_ATTRIBUTE as Attribute<DocsType>, SOURCES_ATTRIBUTE)
            extendsFrom(currentClasspath)
        }
    }
    
    def currentClasspath = configurations.currentApiClasspath.incoming.artifactView { lenient(true) }.files
    def currentDistroJars = currentClasspath.filter { it.name.startsWith('gradle-') && it.name.endsWith('.jar') }
    def baselineJars = configurations.baselineJars
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/CurrentCompilation.java

            ClassSetAnalysis currentClasspath = getClasspath();
            ClassSetAnalysis previousClasspath = previous.getClasspath();
            if (previousClasspath == null) {
                return DependentsSet.dependencyToAll("classpath data of previous compilation is incomplete");
            }
            ClassSetAnalysis.ClassSetDiff classpathChanges = currentClasspath.findChangesSince(previousClasspath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

                VisitableURLClassLoader urlClassLoader = (VisitableURLClassLoader) classLoader;
                try {
                    Set<URI> currentClassPath = uris(urlClassLoader);
                    for (URI uri : spec.getClasspath()) {
                        if (!currentClassPath.contains(uri)) {
                            urlClassLoader.addURL(uri.toURL());
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. testing/architecture-test/build.gradle.kts

        | For example that nullable annotations are used consistently or that or that public api classes do not extend internal types.
    """.trimMargin()
    
    dependencies {
        currentClasspath(project(":distributions-full"))
        testImplementation(project(":base-services"))
        testImplementation(project(":model-core"))
        testImplementation(project(":file-temp"))
        testImplementation(project(":core"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top