Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Kappen (0.14 sec)

  1. maven-model-builder/src/site/apt/index.apt

      <<<false>>> for each url:
      <<<project/@child.project.url.inherit.append.path>>>,
      <<<project/distributionManagement/site/@child.site.url.inherit.append.path>>>,
      <<<project/scm/@child.scm.connection.inherit.append.path>>>,
      <<<project/scm/@child.scm.developerConnection.inherit.append.path>>> and
      <<<project/scm/@child.scm.url.inherit.append.path>>>.
    
      []
    
    * Model Interpolation
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. src/mdo/reader.vm

                        val = DEFAULT_ENTITIES.get(parser.getLocalName());
                    }
                    if (val != null) {
                        result.append(val);
                    } else {
                        result.append("&").append(parser.getLocalName()).append(";");
                    }
                } else if (eventType != XMLStreamReader.COMMENT) {
                    break;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/index.apt

       * known limitations are notably that:
    
         1. plugin goal execution in a child is usually simply appended (at end): you can't try to insert in the middle of pre-existing inherited executions,
    
         2. append happens at plugin level first, then goal level, independently from phases.
            This means for example that adding pluginA:goal2 to pre-existing (pluginA:goal1, pluginB:goal) will lead to (pluginA:goal1, pluginA:goal2, pluginB:goal)
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 14 05:48:39 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. maven-embedder/src/site/apt/logging.apt

     Notice that before Maven 3.1.0, with logger created by Maven, some code used to pass logger from class to class because it could not create a new logger:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 21:09:43 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

    ~~ under the License.
    
     -----
     Maven configuration management
     -----
     The Maven Team
     -----
    
    Configuration levels in maven
    
     In maven configuration control happens on four differ levels: the site level, the group level,
     the project level, and the user level. On the site level you can configure maven for all users
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/mdo/reader-stax.vm

                        val = DEFAULT_ENTITIES.get(parser.getLocalName());
                    }
                    if (val != null) {
                        result.append(val);
                    } else {
                        result.append("&").append(parser.getLocalName()).append(";");
                    }
                } else if (eventType != XMLStreamReader.COMMENT) {
                    break;
                }
                eventType = parser.next();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. maven-core/plugin-manager.txt

    reference to the host application in order to perform its work. This may not occur in the first versions of the plugin API but a resource needs to simply become the mapping mechanism by which parameters are taken from the REST side of the application and mapped into a method call within a given Plexus component. Whether that be the core Nexus application or a component provided by a plugin.
    
    At the very least in the short term the resource needs to know how to look up the component that is required...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
Back to top