Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for Bell (0.2 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelUrlNormalizer.java

    /**
     * Normalizes URLs to remove the ugly parent references "../" that got potentially inserted by URL adjustment during
     * model inheritance.
     *
     */
    public interface ModelUrlNormalizer {
    
        /**
         * Normalizes the well-known URLs of the specified model.
         *
         * @param model The model whose URLs should be normalized, may be {@code null}.
         * @param request The model building request that holds further settings, must not be {@code null}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

         *
         * @return A map of lifecycles, indexed on id
         */
        public Map<String, Lifecycle> getPhaseToLifecycleMap() {
            // If people are going to make their own lifecycles then we need to tell people how to namespace them correctly
            // so that they don't interfere with internally defined lifecycles.
    
            Map<String, Lifecycle> phaseToLifecycleMap = new HashMap<>();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.pom

      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <name>Logging</name>
      <version>1.0.4</version>
      <description>Commons Logging is a thin adapter allowing configurable bridging to other,
        well known logging systems.</description>
      <url>http://jakarta.apache.org/commons/logging/</url>
      <issueManagement>
        <url>http://issues.apache.org/bugzilla/</url>
      </issueManagement>
      <ciManagement>
        <notifiers>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

                    value = basedir + expression.substring(pathSeparator);
                }
            }
    
            /*
             * MNG-4312: We neither have reserved all of the above magic expressions nor is their set fixed/well-known (it
             * gets occasionally extended by newer Maven versions). This imposes the risk for existing plugins to
             * unintentionally use such a magic expression for an ordinary property. So here we check whether we
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Oct 17 17:55:08 GMT 2023
    - 16.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

     * that the plugins/mojos can be used in arbitrary contexts. In particular, the mojos can be used for ordinary build
     * plugins as well as special purpose plugins like reports.
     *
     * @since 3.0
     */
    @Named
    @Singleton
    public class DefaultMavenPluginManager implements MavenPluginManager {
    
        /**
         * <p>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * <strong>Implementation note:</strong> while this method return type is {@link Map}, the
         * returned map instance implements {@link java.util.concurrent.ConcurrentMap} as well.
         *
         * @throws org.apache.maven.api.services.MavenException if not called from the within a mojo execution
         */
        @Nonnull
        Map<String, Object> getPluginContext(@Nonnull Project project);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 30K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <version>3.0.0+</version>
              <required>true</required>
              <description>The year of the project's inception, specified with 4 digits. This value is
                used when generating copyright notices as well as being informational.</description>
              <type>String</type>
            </field>
            <field>
              <name>organization</name>
              <version>3.0.0+</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
        }
    
        /**
         * Gets the identifiers of all profiles that contributed to this project's effective model. This includes active
         * profiles from the project's POM and all its parent POMs as well as from external sources like the
         * {@code settings.xml}. The profile identifiers are grouped by the identifier of their source, e.g.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/MIT-slf4j-api-2.0.11.txt

     "Software"), to  deal in  the Software without  restriction, including
     without limitation  the rights to  use, copy, modify,  merge, publish,
     distribute,  sublicense, and/or sell  copies of  the Software,  and to
     permit persons to whom the Software  is furnished to do so, subject to
     the following conditions:
    
     The  above  copyright  notice  and  this permission  notice  shall  be
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 06:36:58 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactScopeEnum.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact;
    
    /**
     * Type safe reincarnation of Artifact scope. Also supplies the {@code DEFAULT_SCOPE} as well
     * as convenience method to deal with scope relationships.
     *
     *
     */
    @Deprecated
    public enum ArtifactScopeEnum {
        compile(1),
        test(2),
        runtime(3),
        provided(4),
        system(5),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3.2K bytes
    - Viewed (0)
Back to top