Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 221 - 226 of 226 for setVersion (0.07 seconds)

  1. impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            MavenSession session = createMavenSession(pom);
            MavenProject project = session.getCurrentProject();
    
            for (Plugin buildPlugin : project.getBuildPlugins()) {
                assertNotNull(buildPlugin.getVersion(), "Missing version for build plugin " + buildPlugin.getKey());
            }
        }
    
        @Test
        void testBuildFromModelSourceResolvesBasedir() throws Exception {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 17.6K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            return container.lookupMap(role);
        }
    
        public Session getSession() {
            return session;
        }
    
        public void setSession(Session session) {
            this.session = session;
        }
        /*end[MAVEN4]*/
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 24 17:29:44 GMT 2025
    - 16.7K bytes
    - Click Count (0)
  3. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

            }
        }
    
        private static String gav(MavenProject p) {
            return p.getGroupId() + ":" + p.getArtifactId() + ":" + p.getVersion();
        }
    
        private static String gav(Plugin p) {
            return p.getGroupId() + ":" + p.getArtifactId() + ":" + p.getVersion();
        }
    
        /**
         * Post-processes the effective configuration for the specified mojo execution. This step discards all parameters
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

        /**
         * {@return the project artifactId}.
         */
        @Nonnull
        String getArtifactId();
    
        /**
         * {@return the project version}.
         */
        @Nonnull
        String getVersion();
    
        /**
         * {@return the project packaging}.
         * <p>
         * Note: unlike in legacy code, logical checks against string representing packaging (returned by this method)
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Nov 07 13:11:07 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.10.md

    * Get windows kernel version directly from registry rather than windows.getVersion(). ([#58498](https://github.com/kubernetes/kubernetes/pull/58498), [@feiskyer](https://github.com/feiskyer))
    
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 341.8K bytes
    - Click Count (0)
  6. api/go1.txt

    pkg syscall (windows-386), func GetUserNameEx(uint32, *uint16, *uint32) error
    pkg syscall (windows-386), func GetUserProfileDirectory(Token, *uint16, *uint32) error
    pkg syscall (windows-386), func GetVersion() (uint32, error)
    pkg syscall (windows-386), func Getpeername(Handle) (Sockaddr, error)
    pkg syscall (windows-386), func Getsockname(Handle) (Sockaddr, error)
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Click Count (0)
Back to Top