Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BR (0.2 sec)

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

     * infrastructure.<br>
     * It features an <code>execute()</code> method, which triggers the Mojo's build-process behavior, and can throw
     * a MojoException if error conditions occur.<br>
     *
     * @since 4.0.0
     */
    @Experimental
    @FunctionalInterface
    @Consumer
    public interface Mojo {
        /**
         * Perform whatever build-process behavior this <code>Mojo</code> implements.<br>
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

            this.url = url;
    
            this.protocol = protocol(url);
            this.basedir = basedir(url);
        }
    
        // Path Utils
    
        /**
         * Return the protocol name.
         * <br>
         * E.g: for input
         * <code>http://www.codehaus.org</code> this method will return <code>http</code>
         *
         * @param url the url
         * @return the host name
         */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

         * The error's stacktrace will be output when this error level is enabled.
         *
         * @param content
         * @param error
         */
        void debug(CharSequence content, Throwable error);
    
        /**
         * Send an exception to the user in the <b>debug</b> error level.<br>
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

                The source control management system URL
                that describes the repository and how to connect to the
                repository.
                This connection is read-only.
                <br><b>Default value is</b>: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if
                scm's {@code child.scm.connection.inherit.append.path="false"}
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 115.5K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

              <description>
                <![CDATA[
                Whether this mirror should be blocked from any download request but fail the download process, explaining why.
                <br><b>Default value is</b>: <code>false</code>
                <br><b>Since</b>: Maven 3.8.0
                ]]>
              </description>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
              <version>1.0.0+</version>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
Back to top