Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addExtension (0.06 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/CoreExtensions.java

        // -----------/
        // - Methods -/
        // -----------/
    
        /**
         * Method addExtension.
         *
         * @param coreExtension a coreExtension object.
         */
        public void addExtension(CoreExtension coreExtension) {
            getExtensions().add(coreExtension);
        } // -- void addExtension( CoreExtension )
    
        /**
         * Method getExtensions.
         *
         * @return List
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java

            Build build = project.getModel().getBuild();
    
            Extension extension = createExtension("other.group", "other-artifact", "1.0");
    
            build.addExtension(extension);
    
            new ProjectSorter(Collections.singletonList(project));
        }
    
        @Test
        void testMatchingArtifactIdsDifferentGroupIds() throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top