Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Attribut (0.49 sec)

  1. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributeIterator.java

            }
            return (attribute == null) ? null : new Xpp3DomAttributePointer(parent, attribute);
        }
    
        public int getPosition() {
            return position;
        }
    
        public boolean setPosition(int position) {
            this.position = position;
            attribute = (position > 0 && position <= attributes.size()) ? attributes.get(position - 1) : null;
            return attribute != null;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls2-child.xml

      <scm>
        <url>https://domain.org/override</url><!-- check that this won't impact child.site.url.inherit.append.path attribute inheritance -->
      </scm>
      <distributionManagement>
        <site><!-- overriding 1 element will reset all elements, but not child.site.url.inherit.append.path attribute -->
          <name>reset</name>
        </site>
      </distributionManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/api/services/model/RootLocator.java

     * or a {@code pom.xml} containing the {@code root="true"} attribute.
     */
    public interface RootLocator {
    
        String UNABLE_TO_FIND_ROOT_PROJECT_MESSAGE = "Unable to find the root directory. "
                + "Create a .mvn directory in the root directory or add the root=\"true\""
                + " attribute on the root project's model to identify it.";
    
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

         * dominant one. This means that wherever the dominant element doesn't provide the value or a particular attribute,
         * that value or attribute will be set from the recessive DOM node.
         */
        String DEFAULT_SELF_COMBINATION_MODE = SELF_COMBINATION_MERGE;
    
        @Nonnull
        String getName();
    
        @Nonnull
        String getNamespaceUri();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java

     * or a {@code pom.xml} containing the {@code root="true"} attribute.
     *
     * @see DefaultRootLocator
     */
    public interface RootLocator {
    
        String UNABLE_TO_FIND_ROOT_PROJECT_MESSAGE = "Unable to find the root directory. "
                + "Create a .mvn directory in the root directory or add the root=\"true\""
                + " attribute on the root project's model to identify it.";
    
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/mdo/common.vm

      specific language governing permissions and limitations
      under the License.
    *#
    #
    #if ( "${isMavenModel}" == "true" )
    ##
    ## The following loop code is required in order to change the type of the
    ## pomFile attribute to a java.nio.file.Path.  Modello does not support this
    ## type and loading a model with such a type would fail the Modello validation.
    ##
    #foreach ( $field in $model.getClass("Model", $version).allFields )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jan 19 23:38:51 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml

      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-2591</name>
      <description>
        Test aggregation of list configuration items for build plugins when using
        'combine.children=append' attribute.
      </description>
    
      <modules>
        <module>subproject</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- inherit via <pluginManagement> -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributePointer.java

     * under the License.
     */
    package org.apache.maven.project.harness;
    
    import java.util.Map;
    
    import org.apache.commons.jxpath.ri.QName;
    import org.apache.commons.jxpath.ri.model.NodePointer;
    
    /**
     * An attribute pointer for JXPath to support <code>Xpp3Dom</code>.
     *
     */
    class Xpp3DomAttributePointer extends NodePointer {
    
        private Map.Entry<String, String> attrib;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionIT.java

    import java.io.InterruptedIOException;
    import java.nio.file.FileVisitResult;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.nio.file.SimpleFileVisitor;
    import java.nio.file.attribute.BasicFileAttributes;
    import java.util.regex.Pattern;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    
    class ComparableVersionIT {
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml

      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-2591</name>
      <description>
        Test aggregation of list configuration items for build plugins when using
        'combine.children=append' attribute.
      </description>
    
      <modules>
        <module>subproject</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- inherit via <pluginManagement> -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top