Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for buildDependencies (0.26 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformUpstreamDependenciesResolver.java

            if (buildDependencies == null) {
                buildDependencies = computeDependencies(rootComponentProvider.getTaskDependencyValue(), true);
            }
            FileCollectionInternal files = filteredResultFactory.resultsMatching(fromAttributes, selectDependenciesWithId(buildDependencies));
            context.add(files);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

            with(oneTask(executableBinary.buildDependencies)) {
                name == "exeExecutable"
                group == LifecycleBasePlugin.BUILD_GROUP
            }
            SharedLibraryBinarySpec sharedLibraryBinary = binaries.libSharedLibrary as SharedLibraryBinarySpec
            with(oneTask(sharedLibraryBinary.buildDependencies)) {
                name == "libSharedLibrary"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

    
    /**
     * See [Configuration.getBuildDependencies].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().buildDependencies"), level = DeprecationLevel.HIDDEN)
    val <T : Configuration> NamedDomainObjectProvider<T>.buildDependencies: TaskDependency
        get() = get().buildDependencies
    
    
    /**
     * See [Configuration.getSingleFile].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            mainSourceSet.output.generatedSourcesDirs.files == toLinkedSet(new File(project.buildDir, 'generated/sources/annotationProcessor/java/main'))
            mainSourceSet.output.generatedSourcesDirs.buildDependencies.getDependencies(null)*.name == [ JvmConstants.COMPILE_JAVA_TASK_NAME ]
            mainSourceSet.runtimeClasspath.sourceCollections.contains(project.configurations.runtimeClasspath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            outputContains("project name = b")
        }
    
        def "reports problem on #expr buildDependencies.getDependencies(...)"() {
            given:
            buildFile << """
                $setup
                def buildable = $expr
                configurations.create("test")
                println(buildable.buildDependencies.getDependencies(null))
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                            def sourceJar = this.project(":child1").tasks.getByName("sourceJar")
                            def javadocJar = this.project(":child1").tasks.getByName("javadocJar")
                            dep.buildDependencies(sourceJar, javadocJar)
                            dep.publicationSourcePath = cp.fileReference(sourceJar.archiveFile.get().asFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

            private final List<DefaultEclipseClasspathContainer> classpathContainers = new ArrayList<>();
            private final List<TaskDependency> buildDependencies = new ArrayList<>();
            private DefaultEclipseOutputLocation eclipseOutputLocation;
    
            public List<DefaultEclipseExternalDependency> getExternalDependencies() {
                return externalDependencies;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    If you want to upload the `bootJar`, then you need to configure the outgoing configurations to do this:
    
    ```
    configurations {
       [apiElements, runtimeElements].each {
           it.outgoing.artifacts.removeIf { it.buildDependencies.getDependencies(null).contains(jar) }
           it.outgoing.artifact(bootJar)
       }
    }
    ```
    
    Alternatively, you might want to re-enable the `jar` task, and add the `bootJar` with a different classifier.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top