Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 162 for DistributionManagement (3.75 sec)

  1. 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)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

            return pom?.issueManagement[0]
        }
    
        Node getCiManagement() {
            return pom?.ciManagement[0]
        }
    
        Node getDistributionManagement() {
            return pom?.distributionManagement[0]
        }
    
        Node getDependencyManagement() {
            return pom?.dependencyManagement[0]
        }
    
        NodeList getMailingLists() {
            return pom?.mailingLists?.mailingList
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

            <role>Committer</role>
          </roles>
          <timezone>-7</timezone>
        </developer>
    
      </developers>
    
      <distributionManagement>
        <site>
          <id>apache.website</id>
          <url>scp://people.apache.org/www/maven.apache.org</url>
        </site>
      </distributionManagement>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 14.8K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPom.java

        /**
         * Configures the distribution management for the publication represented by this POM.
         *
         * @since 4.8
         */
        void distributionManagement(Action<? super MavenPomDistributionManagement> action);
    
        /**
         * Configures the mailing lists for the publication represented by this POM.
         *
         * @since 4.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. maven-model-builder/src/site/apt/index.apt

      Notice that the 5 URLs from the model (<<<project.url>>>, <<<project.scm.connection>>>, <<<project.scm.developerConnection>>>,
      <<<project.scm.url>>> and <<<project.distributionManagement.site.url>>>) have a special inheritance handling:
    
      ** if not configured in current model, the inherited value is the parent's one with current artifact id appended,
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

            <role>Committer</role>
          </roles>
          <timezone>-7</timezone>
        </developer>
    
      </developers>
    
      <distributionManagement>
        <site>
          <id>apache.website</id>
          <url>scp://people.apache.org/www/maven.apache.org</url>
        </site>
      </distributionManagement>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

            <url>https://github.com/junit-team/junit/issues</url>
        </issueManagement>
        <ciManagement>
            <system>jenkins</system>
            <url>https://junit.ci.cloudbees.com/</url>
        </ciManagement>
        <distributionManagement>
            <downloadUrl>https://github.com/junit-team/junit/wiki/Download-and-Install</downloadUrl>
            <snapshotRepository>
                <id>junit-snapshot-repo</id>
                <name>Nexus Snapshot Repository</name>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

        </issueManagement>
        <ciManagement>
            <system>travis</system>
            <url>https://travis-ci.org/junit-team/junit4</url>
        </ciManagement>
        <distributionManagement>
            <downloadUrl>https://github.com/junit-team/junit4/wiki/Download-and-Install</downloadUrl>
            <snapshotRepository>
                <id>junit-snapshot-repo</id>
                <name>Nexus Snapshot Repository</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            return getModel().getIssueManagement();
        }
    
        public void setDistributionManagement(DistributionManagement distributionManagement) {
            getModel().setDistributionManagement(distributionManagement);
        }
    
        public DistributionManagement getDistributionManagement() {
            return getModel().getDistributionManagement();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                }
    
                DistributionManagement distMgmt = m.getDistributionManagement();
                if (distMgmt != null) {
                    if (distMgmt.getStatus() != null) {
                        addViolation(
                                problems,
                                Severity.ERROR,
                                Version.V20,
                                "distributionManagement.status",
                                null,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top