Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Donner (0.17 sec)

  1. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    by that Contributor alone and not by any other party; and
    
    iv) states that source code for the Program is available from such Contributor,
    and informs licensees how to obtain it in a reasonable manner on or through
    a medium customarily used for software exchange.
    
       When the Program is made available in source code form:
    
          a) it must be made available under this Agreement; and
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

        }
    
        public boolean isResolveDependencies() {
            return resolveDependencies;
        }
    
        /**
         * @since 3.2.2
         * @deprecated This got added when implementing MNG-2199 and is no longer used.
         * Commit 6cf9320942c34bc68205425ab696b1712ace9ba4 updated the way 'MavenProject' objects are initialized.
         */
        @Deprecated
        public ProjectBuildingRequest setResolveVersionRanges(boolean value) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 8.9K bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <defaultValue>true</defaultValue>
            </field>
            <field>
              <name>requiresReports</name>
              <version>1.0.0</version><!-- no longer part of 1.1.0 -->
              <type>boolean</type>
              <description>Flags this Mojo to require running inside of a reports context. Unsupported since Maven 3.0.</description>
              <defaultValue>false</defaultValue>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java

         * </p>
         */
        @Test
        void testJdk7ipv6() {
            ConnectException connEx = new ConnectException("Connection refused: connect");
            IOException ioEx = new IOException("Unable to establish loopback connection", connEx);
            MojoExecutionException mojoEx =
                    new MojoExecutionException("Error executing Jetty: Unable to establish loopback connection", ioEx);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

         * @deprecated This got added when implementing MNG-2199 and is no longer used.
         * Commit 6cf9320942c34bc68205425ab696b1712ace9ba4 updated the way 'MavenProject' objects are initialized.
         */
        @Deprecated
        boolean isResolveVersionRanges();
    
        /**
         * @since 3.2.2
         * @deprecated This got added when implementing MNG-2199 and is no longer used.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/collector/DefaultProjectsSelector.java

                        + " because they threaten the stability of your build.");
                LOGGER.warn("");
                LOGGER.warn("For this reason, future Maven versions might no"
                        + " longer support building such malformed projects.");
                LOGGER.warn("");
            }
    
            return projects;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue May 09 23:46:02 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            }
            String prefix = (moduleName == null) ? (option + ' ') : (option + ' ' + moduleName + '=');
            StringJoiner joiner = new StringJoiner(File.pathSeparator, prefix, "");
            joiner.setEmptyValue("");
            for (Path p : paths) {
                joiner.add(p.toString());
            }
            return joiner.toString();
        }
    
        @Override
        public String toString() {
            return "PathType[" + id() + "]";
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  8. maven-core/pom.xml

                  <!-- END default constructor on Plexus/JSR 330 components -->
                  <!-- system property with that name no longer evaluated -->
                  <exclude>org.apache.maven.project.DefaultProjectBuilder#DISABLE_GLOBAL_MODEL_CACHE_SYSTEM_PROPERTY</exclude>
                  <exclude>org.apache.maven.project.DefaultModelBuildingListener</exclude>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/MavenPluginManager.java

         * look up the mojo from. <strong>Warning:</strong> The returned mojo instance must be released via
         * {@link #releaseMojo(Object, MojoExecution)} when the mojo is no longer needed to free any resources allocated for
         * it.
         *
         * @param mojoInterface The component role of the mojo, must not be {@code null}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                    <configuration>
                        <ignoreMissingFile>false</ignoreMissingFile>
                        <file>${project.build.sourceDirectory}/junit/runner/Version.java.template</file>
                        <outputFile>${project.build.sourceDirectory}/junit/runner/Version.java</outputFile>
                        <regex>false</regex>
                        <token>@version@</token>
                        <value>${project.version}</value>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 24.5K bytes
    - Viewed (0)
Back to top