Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for WHERE (0.32 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/Location.java

     */
    package org.apache.maven.api.services.xml;
    
    public interface Location {
    
        /**
         * Return the line number where the current event ends,
         * returns -1 if none is available.
         * @return the current line number
         */
        int getLineNumber();
    
        /**
         * Return the column number where the current event ends,
         * returns -1 if none is available.
         * @return the current column number
         */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/project/inheritance/t03/ProjectInheritanceTest.java

    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    /**
     * A test which demonstrates maven's recursive inheritance where
     * a distinct value is taken from each parent contributing to
     * the final model of the project being assembled. There is no
     * overriding going on amongst the models being used in this test:
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml

      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-3760</name>
      <description>
        Test interpolation of ${project.baseUri}
      </description>
    
      <properties>
        <!-- this is where we collect all the interpolated values for the POM dump -->
        <prop1>${project.baseUri}</prop1>
      </properties>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/basedir-interpolation/pom-with-unusual-name.xml

      <name>Maven Integration Test :: MNG-3944</name>
      <description>
        Test that interpolation of ${basedir} works for a POM that is not named "pom.xml"
      </description>
    
      <properties>
        <!-- this is where we collect all the interpolated values for the POM dump -->
        <prop0>${basedir}</prop0>
        <prop1>${project.basedir}</prop1>
      </properties>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenArtifactRelocationSource.java

     * explicitly order implementations using Sisu priorities.
     *
     * @since 4.0.0
     */
    public interface MavenArtifactRelocationSource {
        /**
         * Returns {@link Artifact} instance where to relocate to, or {@code null}.
         *
         * @param session The session, never {@code null}.
         * @param result The artifact descriptor result, never {@code null}.
         * @param model The artifact model, never {@code null}.
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/full-interpolation/pom.xml

      <version>0.1</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-3833</name>
      <description>
        Test that POM interpolation fully interpolates all properties in data flow chain, i.e. where property
        A depends on property B, and property B depends on property C and so on.
      </description>
    
      <properties>
        <!--
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * Note that the artifact need not actually exist yet at the returned location,
         * the path merely indicates where the artifact would eventually be stored.
         * <p>
         * Shortcut for {@code getService(LocalArtifactManager.class).getPathForRemoteArtifact(...)}.
         *
         * @param remote the repository from where artifacts are downloaded
         * @param artifact the artifact for which to get a path
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 30K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/inheritance.apt

     of models you may specify:
    
     all of the models that you specify are collected to produce a lineage and then the super model is place at
     the top of that lineage to provide default values.
    
     The super model is where we place all the values which we believe to be standard, values that can be shared and
     utilized across all your Maven projects.
    
    +-----+
     m0 <- m1 <- m2
    +-----+
    
     which is transformed into
    
    +-----+
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 3.5K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    We accept Pull Requests via GitHub. The [developer mailing list][dev-ml-list] is the
    main channel of communication for contributors.  
    There are some guidelines which will make applying PRs easier for us:
    + Create a topic branch from where you want to base your work (this is usually the master branch).
      Push your changes to a topic branch in your fork of the repository.
    + Make commits of logical units.
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java

        }
    
        public static Artifact copyArtifact(Artifact artifact) {
            VersionRange range = artifact.getVersionRange();
    
            // For some reason with the introduction of MNG-1577 we have the case in Yoko where a depMan section has
            // something like the following:
            //
            // <dependencyManagement>
            //     <dependencies>
            //         <!--  Yoko modules -->
            //         <dependency>
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 6.9K bytes
    - Viewed (0)
Back to top