Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for distributionManagement (1.37 sec)

  1. impl/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: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. compat/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: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. android/pom.xml

              <artifactId>build-helper-maven-plugin</artifactId>
              <version>3.4.0</version>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
      <distributionManagement>
        <snapshotRepository>
          <id>sonatype-nexus-snapshots</id>
          <name>Sonatype Nexus Snapshots</name>
          <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. pom.xml

              <artifactId>build-helper-maven-plugin</artifactId>
              <version>3.4.0</version>
            </plugin>
          </plugins>
        </pluginManagement>
      </build>
      <distributionManagement>
        <snapshotRepository>
          <id>sonatype-nexus-snapshots</id>
          <name>Sonatype Nexus Snapshots</name>
          <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 14:51:04 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.model.Dependency;
    import org.apache.maven.model.DependencyManagement;
    import org.apache.maven.model.DistributionManagement;
    import org.apache.maven.model.Model;
    import org.apache.maven.model.Relocation;
    import org.apache.maven.model.Repository;
    import org.apache.maven.model.building.ModelBuildingException;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. compat/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: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top