Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 252 for jar1 (0.09 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

            eclipseChild2.projectDependencies.collect { it.path } == []
            // jars that replace the project dependencies + the transitive dependency from :a
            eclipseChild2.classpath.collect { it.file.name } == ['child1.jar', 'child1-tests.jar', 'test-1.0.jar']
        }
    
        def "custom project dependencies are replaced when project is closed"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                }
            """
        }
    
        @NoDebug
        def "fails appropriately if runner is loaded from a JAR that is not part of the distribution and no explicit version set"() {
            when:
            executer.withStackTraceChecksDisabled()
            def jarsDir = file('jars').createDir()
    
            new File(distribution.gradleHomeDir, 'lib').eachFileRecurse(FileType.FILES) { f ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ProjectDependencyInstrumentingArtifactTransform.java

    import org.gradle.work.DisableCachingByDefault;
    
    import java.io.File;
    
    /**
     * Artifact transform that instruments project based artifacts with Gradle instrumentation.
     */
    @DisableCachingByDefault(because = "Instrumented jars are too big to cache.")
    public abstract class ProjectDependencyInstrumentingArtifactTransform extends BaseInstrumentingArtifactTransform {
    
        @Override
        @Classpath
        @InputArtifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/transforms/FindGradleJars.groovy

        abstract Provider<FileSystemLocation> getArtifact()
    
        @Override
        void transform(TransformOutputs outputs) {
            File baselineJarsDirectory = artifact.get().asFile
            if (baselineJarsDirectory.name == 'gradle-jars') {
                baselineJarsDirectory.listFiles().each {
                    outputs.file(it)
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    It is roughly structured as follows:
    
    [listing]
    ----
    ├── caches                  // <1>
    │   ├── 4.8                     // <2>
    │   ├── 4.9                     // <2>
    │   ├── ⋮
    │   ├── jars-3                  // <3>
    │   └── modules-2               // <3>
    ├── daemon // <4>
    │   ├── ⋮
    │   ├── 4.8
    │   └── 4.9
    ├── init.d                  // <5>
    │   └── my-setup.gradle
    ├── jdks                    // <6>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/api/plugins/BuildSrcPluginIntegrationTest.groovy

            """
            when:
            succeeds("myTaskMyPlugin")
            then:
            outputContains("From MyPlugin")
        }
    
        def "build uses jars from multi-project buildSrc"() {
            writeBuildSrcPlugin("buildSrc", "MyPlugin")
            writeBuildSrcPlugin("buildSrc/subproject", "MyPluginSub")
            file("buildSrc/build.gradle") << """
                allprojects {
                    apply plugin: 'groovy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ExternalDependencyInstrumentingArtifactTransform.java

    /**
     * Artifact transform that instruments external artifacts with Gradle instrumentation.
     */
    @DisableCachingByDefault(because = "Instrumented jars are too big to cache")
    public abstract class ExternalDependencyInstrumentingArtifactTransform extends BaseInstrumentingArtifactTransform {
    
        @Override
        public void transform(TransformOutputs outputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/DependencyClassPathNotationConverter.java

            apiClasspath.removeAll(groovyImpl);
            apiClasspath.removeAll(installationBeacon);
            // Remove Kotlin DSL and Kotlin jars
            removeKotlin(apiClasspath);
    
            ImmutableSet.Builder<File> builder = ImmutableSet.builder();
            builder.add(relocatedDepsJar(apiClasspath, RuntimeShadedJarType.API));
            builder.addAll(groovyImpl);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:30:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/DependencyClassPathProvider.java

        }
    
        private ClassPath initGradleApi() {
            // This gradleApi() method creates a Gradle API classpath based on real jars for embedded test running.
            // Currently, this leaks additional dependencies that may cause unexpected issues.
            // This method is involved in generating the gradleApi() Jar which is used in a real Gradle run.
            // See: `org.gradle.api.internal.notations.DependencyClassPathNotationConverter`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

            def headingIndex = lines.indexOf(heading)
            def classpathSize = Integer.parseInt(lines[headingIndex + 1])
            // The gradle-launcher.jar is mandatory.
            // The gradle-instrumentation-agent.jar may not be available if the build runs in no-daemon mode.
            // There should not be more jars on the system classpath.
            classpathSize == 1 || classpathSize == 2
            def maybeHasAgent = classpathSize > 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top