Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for snapshotRepository (0.1 seconds)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                if (distributionManagement != null) {
                    String org, val;
                    // Repository
                    visit(distributionManagement.getRepository());
                    // SnapshotRepository
                    visit(distributionManagement.getSnapshotRepository());
                    // Site
                    visit(distributionManagement.getSite());
                    // DownloadUrl
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 43.1K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertContains(result.getWarnings().get(2), "'distributionManagement.repository.id' must not be 'local'");
            assertContains(
                    result.getWarnings().get(3), "'distributionManagement.snapshotRepository.id' must not be 'local'");
        }
    
        @Test
        void testMissingPluginDependencyGroupId() throws Exception {
            SimpleProblemCollector result = validate("missing-plugin-dependency-groupId.xml");
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 33.9K bytes
    - Click Count (0)
Back to Top