Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for panama (0.05 sec)

  1. maven-api-impl/pom.xml

                  </templates>
                  <params>
                    <param>forcedIOModelVersion=1.2.0</param>
                    <param>packageModelV3=org.apache.maven.settings</param>
                    <param>packageModelV4=org.apache.maven.api.settings</param>
                    <param>packageToolV4=org.apache.maven.settings.v4</param>
                    <param>locationTracking=true</param>
                    <param>generateLocationClasses=true</param>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. maven-embedder/pom.xml

                <template>writer-stax.vm</template>
              </templates>
              <params>
                <param>packageModelV4=org.apache.maven.cli.internal.extension.model</param>
                <param>packageToolV4=org.apache.maven.cli.internal.extension.io</param>
              </params>
              <velocityBasedir>${project.basedir}/../src/mdo</velocityBasedir>
            </configuration>
            <executions>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. maven-repository-metadata/pom.xml

              </models>
              <params>
                <param>forcedIOModelVersion=1.1.0</param>
                <param>packageModelV3=org.apache.maven.artifact.repository.metadata</param>
                <param>packageModelV4=org.apache.maven.api.metadata</param>
                <param>packageToolV4=org.apache.maven.artifact.repository.metadata.io</param>
              </params>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. api/maven-api-metadata/pom.xml

                  </models>
                  <templates>
                    <template>model.vm</template>
                  </templates>
                  <params>
                    <param>packageModelV4=org.apache.maven.api.metadata</param>
                  </params>
                </configuration>
              </execution>
              <execution>
                <id>plugin-doc</id>
                <goals>
                  <goal>xdoc</goal>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                            Object instance;
                            Object[] params;
                            if (Modifier.isStatic(method.getModifiers())) {
                                instance = null;
                                params = args;
                            } else {
                                instance = args[0];
                                params = Arrays.copyOfRange(args, 1, args.length);
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

        }
    
        public static XmlNodeImpl build(Reader reader, boolean trim) throws XmlPullParserException, IOException {
            return build(reader, trim, null);
        }
    
        /**
         * @param reader the reader
         * @param trim to trim
         * @param locationBuilder the builder
         * @since 3.2.0
         * @return DOM
         * @throws XmlPullParserException XML well-formedness error
         * @throws IOException I/O error reading file or stream
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/ModelValidator.java

         *
         * @param activeExternalProfiles the active profiles coming from external sources (settings.xml), must not be {@code null}
         * @param model The model to validate, must not be {@code null}.
         * @param request The model building request that holds further settings, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ModelInterpolator.java

         *
         * @param model The model to interpolate, must not be {@code null}.
         * @param projectDir The project directory, may be {@code null} if the model does not belong to a local project but
         *            to some artifact's metadata.
         * @param request The model building request that holds further settings, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelNormalizer.java

         * Merges duplicate elements like multiple declarations of the same build plugin in the specified model.
         *
         * @param model The model whose duplicate elements should be merged, must not be {@code null}.
         * @param request The model building request that holds further settings, must not be {@code null}.
         * @param problems The container used to collect problems that were encountered, must not be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivator.java

         * Determines whether the specified profile is active in the given activator context.
         *
         * @param profile The profile whose activation status should be determined, must not be {@code null}.
         * @param context The environmental context used to determine the activation status of the profile, must not be
         *            {@code null}.
         * @param problems The container used to collect problems (e.g. bad syntax) that were encountered, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top