Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for parameters (3.19 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java

         */
        @Nonnull
        String defaultValue() default "";
    
        /**
         * is the parameter required?
         * @return <code>true</code> if the Mojo should fail when the parameter cannot be injected
         */
        boolean required() default false;
    
        /**
         * Specifies that this parameter cannot be configured directly by the user (as in the case of POM-specified
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

        }
    
        private Stream<String> getParameterNames(Parameter parameter) {
            if (parameter.getAlias() != null) {
                return Stream.of(parameter.getName(), parameter.getAlias());
            } else {
                return Stream.of(parameter.getName());
            }
        }
    
        private Set<String> getUnknownParameters(MojoExecution mojoExecution, Set<String> parameters) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactory.java

     *
     * @since 4.0.0
     */
    @Experimental
    public interface ArtifactCoordinateFactory extends Service {
    
        /**
         * Creates a coordinate.
         *
         * @param request the request holding coordinate creation parameters
         * @return an {@code ArtifactCoordinate}, never {@code null}
         * @throws IllegalArgumentException if {@code request} is null or {@code request.session} is null or invalid
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 18 10:30:20 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/ProjectBuilder.java

         * Builds a project descriptor from the specified POM file.
         *
         * @param projectFile The POM file to build the project from, must not be {@code null}.
         * @param request The project building request that holds further parameters, must not be {@code null}.
         * @return The result of the project building, never {@code null}.
         * @throws ProjectBuildingException If the project descriptor could not be successfully built.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

     themselves:
    
    +-----+
    <plugins>
      <plugin>
       <id>xdoc</id>
       <version>1.0</version>
       <parameters>
         <parameter>
           <name>theme</name>
           <value>classic</value>
         </parameter>
       </parameters>
      </plugin>
    </plugins>
    +-----+
    
    Unified source directory
    
     Unified source directory structure that is analogous to the repository
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/graph/DefaultGraphBuilderTest.java

                new RequestPomCollectionStrategy(projectsSelector);
    
        private Map<String, MavenProject> artifactIdProjectMap;
    
        public static Stream<Arguments> parameters() {
            return Stream.of(
                    scenario("Full reactor in order")
                            .expectResult(
                                    PARENT_MODULE,
                                    MODULE_C,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 27.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilder.java

    @Experimental
    public interface ToolchainsBuilder extends Service {
    
        /**
         * Builds the effective toolchains for the specified toolchains files.
         *
         * @param request the toolchains building request that holds the parameters, must not be {@code null}
         * @return the result of the toolchains building, never {@code null}
         * @throws ToolchainsBuilderException if the effective toolchains could not be built
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  8. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
          </fields>
        </class>
    
        <class xdoc.anchorName="parameter">
          <name>Parameter</name>
          <version>1.0.0+</version>
          <description>A phase mapping definition.</description>
          <!-- see o.a.m.plugin.descriptor.Parameter -->
          <fields>
            <field>
              <name>name</name>
              <version>1.0.0+</version>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

    @Experimental
    public interface SettingsBuilder extends Service {
    
        /**
         * Builds the effective settings of the specified settings files.
         *
         * @param request the settings building request that holds the parameters, must not be {@code null}
         * @return the result of the settings building, never {@code null}
         * @throws SettingsBuilderException if the effective settings could not be built
         */
        @Nonnull
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            if (mojoDescriptor.getParameters() != null) {
                for (Parameter parameter : mojoDescriptor.getParameters()) {
                    XmlNode parameterConfiguration = executionConfiguration.getChild(parameter.getName());
    
                    if (parameterConfiguration == null) {
                        parameterConfiguration = executionConfiguration.getChild(parameter.getAlias());
                    }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
Back to top