Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for DistributionManagement (0.41 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

                DistributionManagement.Builder builder,
                DistributionManagement target,
                DistributionManagement source,
                boolean sourceDominant,
                Map<Object, Object> context) {}
    
        @Override
        protected void mergeDistributionManagement_Repository(
                DistributionManagement.Builder builder,
                DistributionManagement target,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

            and:
            parsedPom.distributionManagement.relocation[0].groupId.text() == "new-group"
            parsedPom.distributionManagement.relocation[0].artifactId.text() == "new-artifact-id"
            parsedPom.distributionManagement.relocation[0].version.text() == "42"
            parsedPom.distributionManagement.relocation[0].message.text() == "the answer to life, the universe and everything"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

            and:
            parsedPom.distributionManagement.downloadUrl.text() == "https://example.org/download/"
            parsedPom.distributionManagement.relocation[0].groupId.text() == "new-group"
            parsedPom.distributionManagement.relocation[0].artifactId.text() == "new-artifact-id"
            parsedPom.distributionManagement.relocation[0].version.text() == "42"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            target.setUrl(source.getUrl().getOrNull());
            return target;
        }
    
        private static DistributionManagement convertDistributionManagement(MavenPomDistributionManagementInternal source) {
            DistributionManagement target = new DistributionManagement();
            target.setDownloadUrl(source.getDownloadUrl().getOrNull());
            if (source.getRelocation() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
        <version>version-one</version>
        <distributionManagement>
            <relocation>
            </relocation>
        </distributionManagement>
    </project>
    """
            pomReader = new PomReader(locallyAvailableExternalResource, moduleIdentifierFactory)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            if (model.getDistributionManagement() != null
                    && model.getDistributionManagement().getRelocation() != null) {
                // keep relocation only
                builder.distributionManagement(DistributionManagement.newBuilder()
                        .relocation(model.getDistributionManagement().getRelocation())
                        .build());
            }
            // only keep repositories other than 'central'
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGeneratorTest.groovy

                }
                issueManagement {
                    system.set("Bugzilla")
                }
                ciManagement {
                    system.set("Anthill")
                }
                distributionManagement {
                    downloadUrl.set("https://example.org/download/")
                    relocation {
                        groupId.set("org.example.new")
                    }
                }
                mailingLists {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertContains(result.getErrors().get(1), "'pluginRepositories.pluginRepository.id' must not be 'local'");
            assertContains(result.getErrors().get(2), "'distributionManagement.repository.id' must not be 'local'");
            assertContains(result.getErrors().get(3), "'distributionManagement.snapshotRepository.id' must not be 'local'");
        }
    
        @Test
        void testMissingPluginDependencyGroupId() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

            <role>PMC Member</role>
          </roles>
          <timezone>+1</timezone>
        </developer>
      </developers>
    
      <distributionManagement>
        <site>
          <id>apache.website</id>
          <url>scp://people.apache.org/www/maven.apache.org</url>
        </site>
      </distributionManagement>
    
    <!-- Disabled until projects have been made to comply
      <build>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserBomTest.groovy

        <groupId>group-a</groupId>
        <artifactId>bom</artifactId>
        <version>1.0</version>
        <packaging>pom</packaging>
    
        <distributionManagement>
            <relocation>
                <version>2.0</version>
            </relocation>
        </distributionManagement>
    </project>
    """
    
            def relocatedToPomFile = tmpDir.file("relocated.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top