Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for projectIdentity (0.28 sec)

  1. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

        def "delegates when publication is valid"() {
            when:
            def projectIdentity = makeProjectIdentity("the-group", "the-artifact", "the-version")
            def publication = new MavenNormalizedPublication("pub-name", projectIdentity, "pom", createPomFile(projectIdentity, null, marker), null, emptySet())
    
            and:
            publisher.publish(publication, repository)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/validation/DuplicatePublicationTracker.java

            PublicationWithProject publicationWithProject = new PublicationWithProject(projectDisplayName, publicationName, projectIdentity);
            if (published.get(repositoryKey).contains(publicationWithProject)) {
                LOG.warn("Publication '" + projectIdentity + "' is published multiple times to the same location. It is likely that repository '" + repositoryName + "' is duplicated.");
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/DefaultBuildController.java

            } else if (target instanceof GradleProjectIdentity) {
                GradleProjectIdentity projectIdentity = (GradleProjectIdentity) target;
                BuildState build = findBuild(projectIdentity);
                ProjectState project = findProject(build, projectIdentity);
                return controller.locateBuilderForTarget(project, modelIdentifier.getName(), parameter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/MavenNormalizedPublication.java

            String name,
            MavenPublicationCoordinates projectIdentity,
            String packaging,
            MavenArtifact pomArtifact,
            MavenArtifact mainArtifact,
            Set<MavenArtifact> allArtifacts
        ) {
            this.name = name;
            this.coordinates = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId(projectIdentity.getGroupId().get(), projectIdentity.getArtifactId().get()), projectIdentity.getVersion().get());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

                }
            }
        }
    
        private static class ResolvedProjectConfiguration {
            private final Path projectIdentity;
            private final String targetConfiguration;
    
            public ResolvedProjectConfiguration(Path projectIdentity, String targetConfiguration) {
                this.projectIdentity = projectIdentity;
                this.targetConfiguration = targetConfiguration;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

        }
    
        def "reports and fails with invalid descriptor file (marker = #marker)"() {
            given:
            def projectIdentity = this.projectIdentity(coordinates.group, coordinates.name, coordinates.version)
            def artifact = new FileBasedIvyArtifact(new File("foo.txt"), projectIdentity, TestFiles.taskDependencyFactory())
            artifact.setConf("unknown")
            def descriptor = ivyDescriptor()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top