Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for buildDependencies (0.36 sec)

  1. 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)
  2. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            when:
            def task = Mock(Task)
            mavenArtifact.buildDependencies >> publishArtifactDependencies
            publishArtifactDependencies.getDependencies(task) >> [task]
    
            then:
            publication.publishableArtifacts.files.buildDependencies.getDependencies(task).contains(task)
        }
    
        def "multiple usages of a component can provide the same artifact"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ArtifactDeclarationIntegrationTest.groovy

                            String type = "jar"
                            String classifier
                            File file
                            Date date
                            TaskDependency buildDependencies = new org.gradle.api.internal.tasks.DefaultTaskDependency()
                        }
                        artifact.file = file("lib1.jar")
                        task jar
                        compile(artifact) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            installTask.name >> taskName
            def deps = Stub(TaskDependency)
            deps.getDependencies(_) >> [installTask]
            def outputs = Stub(FileCollection)
            outputs.buildDependencies >> deps
            return outputs
        }
    
        interface TestBinary extends ComponentWithOutputs, ComponentWithNames {
        }
    
        interface TestComponent extends ProductionComponent, ComponentWithBinaries {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. 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