Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Command (0.21 sec)

  1. apache-maven/src/assembly/maven/conf/settings.xml

       | Default: false
      <offline>false</offline>
      -->
    
      <!-- pluginGroups
       | This is a list of additional group identifiers that will be searched when resolving plugins by their prefix, i.e.
       | when invoking a command line like "mvn prefix:goal". Maven will automatically add the group identifiers
       | "org.apache.maven.plugins" and "org.codehaus.mojo" if these are not already contained in the list.
       |-->
      <pluginGroups>
        <!-- pluginGroup
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * Sets the user properties to use for interpolation and profile activation. The user properties have been
         * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command
         * line.
         *
         * @param userProperties The user properties, may be {@code null}.
         * @return This request, never {@code null}.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                }
    
                sb.append(LS);
                sb.append(LS);
                sb.append(indentation);
                sb.append("Then, install it using the command: ");
                sb.append(LS);
                sb.append(indentation);
                sb.append("    mvn install:install-file -DgroupId=");
                sb.append(groupId);
                sb.append(" -DartifactId=");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

    import java.util.Objects;
    import java.util.Optional;
    import java.util.StringJoiner;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * The option of a Java command-line tool where to place the paths to some dependencies.
     * A {@code PathType} can identify the class-path, the module-path, the patches for a specific module,
     * or another kind of path.
     *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  5. maven-core/plugin-manager.txt

    repository. During development in an IDE we would need layered resolution approach that would allow resolution from the workspace, then the local Maven repository and then from any number of remote Maven repositories. During development from the command line we would need a layered resolution approach that would allow resolution from the local Maven repository and then from any number of remote Maven repositories. In production the resolution for the dependencies could also be layered but would depend...
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                            -Dgpg.passphrase="<passphrase>" -Dgpg.keyname="<your key ID>"
                            In order to create the key pair, use the command "gpg &ndash;&ndash;gen-key".
                            (&ndash;&ndash; stands for double dash)
                            -->
                            <artifactId>maven-gpg-plugin</artifactId>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 24.5K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                } else {
                    // goal was missing - pass through to MojoNotFoundException
                    goal = "";
                }
    
                // This is the case where someone has executed a single goal from the command line
                // of the form:
                //
                // mvn remote-resources:process
                //
                // From the metadata stored on the server which has been created as part of a standard
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

         * being passed into the session. This is also the potentially constrained set of projects by using --projects
         * on the command line.
         */
        private List<MavenProject> projects;
    
        /**
         * The full set of projects before any potential constraining by --projects. Useful in the case where you want to
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/offline-mode.apt

      can conceivably be set from either the settings.xml or the command-line.
    
      In the event the '-o' switch is the impetus for setting offline mode, this
      should result in modification of the active profile in the MavenSettings
      instance, just as definition of the active profile from the command-line
      should result in similar modification. This object is not meant to be
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  10. api/maven-api-settings/src/main/mdo/settings.mdo

                mobile platform, to enable easy switching of entire proxy
                configurations by simply specifying the profile id, again either from
                the command line or from the defaults section below.
              </description>
              <association>
                <type>Proxy</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
Back to top