Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 11 (0.17 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

         * node is in the first level pom
         */
        int UPDATE_SCOPE_CURRENT_POM = 9;
    
        int SELECT_VERSION_FROM_RANGE = 10;
    
        int RESTRICT_RANGE = 11;
    
        int MANAGE_ARTIFACT_VERSION = 12;
    
        int MANAGE_ARTIFACT_SCOPE = 13;
    
        int MANAGE_ARTIFACT_SYSTEM_PATH = 14;
    
        void testArtifact(Artifact node);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3K bytes
    - Viewed (0)
  2. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            "2.0", "2.0.a", "2-1", "2.0.2", "2.0.123", "2.1.0", "2.1-a", "2.1b", "2.1-c", "2.1-1", "2.1.0.1", "2.2",
            "2.123", "11.a2", "11.a11", "11.b2", "11.b11", "11.m2", "11.m11", "11", "11.a", "11b", "11c", "11m"
        };
    
        private void checkVersionsOrder(String[] versions) {
            Comparable[] c = new Comparable[versions.length];
            for (int i = 0; i < versions.length; i++) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 09 06:39:47 GMT 2024
    - 14K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

        // required after the execution of 9) as the AbstractLifecycleParticipants are free to mutate the MavenProject
        // instances, which may change dependencies which can, in turn, affect the build order.
        //
        // 11) Execute LifecycleStarter.start()
        //
        @SuppressWarnings("checkstyle:methodlength")
        private MavenExecutionResult doExecute(MavenExecutionRequest request) {
            request.setStartTime(new Date());
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/internal/MavenPluginJavaPrerequisiteCheckerTest.java

            assertTrue(checker.matchesVersion("1.0", "1.8"));
            assertTrue(checker.matchesVersion("1.8", "9.0.1+11"));
            assertFalse(checker.matchesVersion("[1.0,2],[3,4]", "2.1"));
            assertTrue(checker.matchesVersion("[1.0,2],[3,4]", "3.1"));
            assertThrows(IllegalArgumentException.class, () -> checker.matchesVersion("(1.0,0)", "11"));
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java

        private ComparableVersion comparable;
    
        public DefaultArtifactVersion(String version) {
            parseVersion(version);
        }
    
        @Override
        public int hashCode() {
            return 11 + comparable.hashCode();
        }
    
        @Override
        public boolean equals(Object other) {
            if (this == other) {
                return true;
            }
    
            if (!(other instanceof ArtifactVersion)) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Nov 17 15:50:51 GMT 2023
    - 6K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

            // [05] modello:xpp3-writer
            // [06] modello:java
            // [07] modello:xpp3-reader
            // [08] plugin:descriptor
            // [09] resources:resources
            // [10] compiler:compile
            // [11] resources:testResources
            // [12] compiler:testCompile
            // [13] surefire:test
            // [14] jar:jar
            // [15] plugin:addPluginArtifactMetadata
            // [16] install:install
            //
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
Back to top