Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for currentClasspath (0.4 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/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)
  3. 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