Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 277 for Packaging (0.04 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/package-info.java

     * the {@code /project/subprojects/subproject} elements of the POM in the aggregator project.
     * Note that the aggregator project is required to have a {@code pom} packaging.</p>
     *
     * <p><dfn>Project inheritance</dfn> defines a parent-child relationship between projects.
     * The <dfn>child project</dfn> inherits all the information from the <dfn>parent project</dfn>
     * POM.</p>
     *
     */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:13:42 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        @Test
        void testParentPomPackagingMustBePom() throws Exception {
            assertThrows(
                    ProjectBuildingException.class,
                    () -> buildPom("parent-pom-packaging/sub"),
                    "Wrong packaging of parent POM was not rejected");
        }
    
        /** MNG-522, MNG-3018 */
        @Test
        void testManagedPluginConfigurationAppliesToImplicitPluginsIntroducedByPackaging() throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>packaging</name>
              <version>4.0.0+</version>
              <description>
                The type of artifact this project produces, for example {@code jar},
                  {@code war},
                  {@code ear},
                  {@code pom}.
                Plugins can create their own packaging, and
                therefore their own packaging types,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

                        current = topDirectory.relativize(current);
                    }
                    logger.info("  from " + current);
                }
    
                // ----------[ packaging ]----------
                prefix = chars('-', Math.max(0, (lineLength - project.getPackaging().length() - 4) / 2));
                suffix = chars('-', Math.max(0, lineLength - project.getPackaging().length() - 4 - prefix.length()));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 08 08:49:11 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/event/ExecutionEventLogger.java

                        current = topDirectory.relativize(current);
                    }
                    logger.info("  from " + current);
                }
    
                // ----------[ packaging ]----------
                prefix = chars('-', Math.max(0, (lineLength - project.getPackaging().length() - 4) / 2));
                suffix = chars('-', Math.max(0, lineLength - project.getPackaging().length() - 4 - prefix.length()));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Dec 13 15:40:45 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/site/apt/index.apt

      By default, every model field is inherited as-is from parent, with a few exceptions that are intentionally not inherited:
      <<<modelVersion>>>, <<<artifactId>>>, <<<packaging>>>, <<<profiles>>> (injected in phase 1) and <<<prerequisites>>>.
    
      Notice that the 5 URLs from the model (<<<project.url>>>, <<<project.scm.connection>>>, <<<project.scm.developerConnection>>>,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 03 08:42:52 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  7. api/maven-api-settings/src/main/mdo/settings.mdo

                <type>ActivationFile</type>
              </association>
            </field>
            <field>
              <name>packaging</name>
              <version>1.2.0+</version>
              <type>String</type>
              <description>
                Specifies that this profile will be activated based on the project's packaging.
              </description>
            </field>
            <field>
              <name>condition</name>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun May 18 09:15:56 UTC 2025
    - 33.8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

         * <ul>
         *   <li>The project's artifacts ({@link Project#getArtifacts()}):
         *     <ul>
         *       <li>The POM artifact (always present)</li>
         *       <li>The main project artifact (if applicable based on packaging)</li>
         *     </ul>
         *   </li>
         *   <li>All attached artifacts in the order they were attached</li>
         * </ul>
         * The contents depend on the current lifecycle phase when this method is called, as artifacts
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jan 30 23:29:13 UTC 2025
    - 12K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    + artifact.getArtifactId() + "</artifactId>" + "<version>"
                    + artifact.getBaseVersion() + "</version>" + "<packaging>"
                    + artifact.getType() + "</packaging>" + "</project>";
            return new StubModelSource(xml, artifact);
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        Language requireLanguage(@Nonnull String id);
    
        /**
         * Obtain the {@link Packaging} from the specified {@code id}.
         * <p>
         * Shortcut for {@code getService(PackagingRegistry.class).require(...)}.
         *
         * @see org.apache.maven.api.services.PackagingRegistry#require(String)
         */
        @Nonnull
        Packaging requirePackaging(@Nonnull String id);
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top