Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for dom (0.17 sec)

  1. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java

        /**
         * This default mode for combining a DOM node during merge means that where element names match, the process will
         * try to merge the element attributes and values, rather than overriding the recessive element completely with the
         * 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.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Nov 27 23:11:34 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  2. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

              <type>String</type>
            </field>
            <field>
              <name>provides</name>
              <version>1.0.0/1.0.99</version> <!-- fake upperbound, it's inclusive -->
              <type>DOM</type> <!-- DOM for Maven 2.0.9/2.3.3 -->
              <description>
                Toolchain identification information, which will be matched against project requirements.
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/PluginsMetadataGenerator.java

                        if (pluginDescriptorEntry != null) {
                            try (InputStream is = artifactJar.getInputStream(pluginDescriptorEntry)) {
                                // Note: using DOM instead of use of
                                // org.apache.maven.plugin.descriptor.PluginDescriptor
                                // as it would pull in dependency on:
                                // - maven-plugin-api (for model)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java

                }
    
                jtc.addProvideToken(key, matcher);
            }
    
            // populate the configuration section
            Xpp3Dom dom = (Xpp3Dom) model.getConfiguration();
            Xpp3Dom javahome = dom != null ? dom.getChild(JavaToolchainImpl.KEY_JAVAHOME) : null;
            if (javahome == null) {
                throw new MisconfiguredToolchainException(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 4K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
              <name>configuration</name>
              <version>1.0.0</version>
              <type>DOM</type>
              <description>Configuration to pass to all goals run in this phase.</description>
            </field>
          </fields>
        </class>
        <class>
          <name>Execution</name>
          <version>1.0.0</version>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptorBuilder.java

            }
    
            extensionDescriptor.setExportedPackages(parseStrings(dom.getChild("exportedPackages")));
    
            extensionDescriptor.setExportedArtifacts(parseStrings(dom.getChild("exportedArtifacts")));
    
            return extensionDescriptor;
        }
    
        private List<String> parseStrings(XmlNode dom) {
            List<String> strings = null;
    
            if (dom != null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  7. maven-core/lifecycle-executor.txt

    the MojoDescriptor for the goal that needs to be run. In the MojoDescriptor we are interested in the <configuration/> element and <parameters/> element. From these elements we need to make a component configuration for the MojoExecution. The actual DOM like structure we create is of type PlexusConfiguration and is the type we use with the ComponentConfigurator to initialize fields in a Plexus component. Typically this is done within Plexus with the configuration supplied with component configuration,...
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 9.7K bytes
    - Viewed (0)
Back to top