Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for fountain (0.29 sec)

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

         * This map is usually either empty if no module was found, or a singleton map.
         * It may however contain more than one entry if module hierarchy was detected,
         * in which case there is one key per sub-directory.
         *
         * <p>This map may contain null values if the constructor was invoked with {@code resolve}
         * parameter set to false. This is more efficient when only the module existence needs to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

    import org.eclipse.aether.repository.WorkspaceRepository;
    
    /**
     * Caches raw plugin descriptors. A raw plugin descriptor is a descriptor that has just been extracted from the plugin
     * artifact and does not contain any runtime specific data. The cache must not be used for descriptors that hold runtime
     * data like the plugin realm. <strong>Warning:</strong> This is an internal utility interface that is only public for
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                                problems,
                                severity,
                                fieldName,
                                sourceHint,
                                "must not contain any of these characters " + banned + " but found " + string.charAt(i));
                        return false;
                    }
                }
            }
    
            return true;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                        mavenConfig = cliManager.parse(args);
                        List<?> unrecognized = mavenConfig.getArgList();
                        if (!unrecognized.isEmpty()) {
                            // This file can only contain options, not args (goals or phases)
                            throw new ParseException("Unrecognized maven.config file entries: " + unrecognized);
                        }
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionRangeTest.java

        private void assertContains(VersionRange range, String version) {
            assertTrue(range.contains(newVersion(version)), range + " should contain " + version);
        }
    
        private void assertNotContains(VersionRange range, String version) {
            assertFalse(range.contains(newVersion(version)), range + " should not contain " + version);
        }
    
        @Test
        void testLowerBoundInclusiveUpperBoundInclusive() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertContains(
                    result.getErrors().get(1),
                    "'pluginRepositories.pluginRepository.id' must not contain any of these characters");
            assertContains(
                    result.getErrors().get(2),
                    "'distributionManagement.repository.id' must not contain any of these characters");
            assertContains(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/java/org/apache/maven/internal/impl/DefaultSettingsValidatorTest.java

            assertContains(problems.messages.get(2), "'mirrors.mirror.mirrorOf' for local is missing");
            assertContains(problems.messages.get(3), "'mirrors.mirror.id' must not contain any of these characters");
        }
    
        @Test
        void testValidateRepository() throws Exception {
            Profile profile = new Profile();
            Repository repo = new Repository();
            repo.setId("local");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. Jenkinsfile.s390x

                                }
                            } finally {
                                // in ITs test we need only reports from test itself
                                // test projects can contain reports with tested failed builds
                                junit testResults: '**/core-it-suite/target/surefire-reports/*.xml,**/core-it-support/**/target/surefire-reports/*.xml', allowEmptyResults: true
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    }
                }
    
                Severity errOn30 = getSeverity(request, ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_3_0);
    
                // The file pom may not contain the modelVersion yet, as it may be set later by the
                // ModelVersionXMLFilter.
                if (m.getModelVersion() != null && !m.getModelVersion().isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  10. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        3.5. Distribution of Executable Versions.
    
        You may distribute the Executable form of the Covered Software under
        the terms of this License or under the terms of a license of Your
        choice, which may contain terms different from this License,
        provided that You are in compliance with the terms of this License
        and that the license for the Executable form does not attempt to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top