Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Lively (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

            }
    
            return value;
        }
    
        private static boolean isTypeCompatible(Class<?> type, Object value) {
            if (type.isInstance(value)) {
                return true;
            }
            // likely Boolean -> boolean, Short -> int etc. conversions, it's not the problem case we try to avoid
            return ((type.isPrimitive() || type.getName().startsWith("java.lang."))
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 30 23:39:19 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

      ...
    </dependencies>
        ]]></configuration>
        <description>
          <![CDATA[
          This is a set of Artifact instances resolved from the set of dependencies for
          the current project.
    
          NOTE: This will likely contain much more than the direct dependencies of the
          current POM, since Maven uses transitive, or chained, dependency resolution.
        ]]></description>
      </expression>
      <expression>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 5.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                } catch (InterruptedException e) {
                    rootSession.getResult().addException(e);
                    break;
                } catch (ExecutionException e) {
                    // TODO MNG-5766 changes likely made this redundant
                    rootSession.getResult().addException(e);
                    break;
                }
            }
        }
    
        private Callable<ProjectSegment> createBuildCallable(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 9.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

            }
    
            return value;
        }
    
        private static boolean isTypeCompatible(Class<?> type, Object value) {
            if (type.isInstance(value)) {
                return true;
            }
            // likely Boolean -> boolean, Short -> int etc. conversions, it's not the problem case we try to avoid
            return ((type.isPrimitive() || type.getName().startsWith("java.lang."))
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Oct 17 17:55:08 GMT 2023
    - 16.7K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/index.apt

       on plugin goals execution order:
    
       * <<in a given phase, goals order is not expected to be guaranteed nor finely tuned>>:
         it is just a consequence of the order obtained during {{{../maven-model-builder/}effective model building}},
         which combines profile activation+injection and inheritance assembly from parents,
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jun 14 05:48:39 GMT 2023
    - 5.3K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/offline-mode.apt

    ** Deployment mojos
    
      The concept of deployment is dependent on the availability of a some
      remote repository. Just as above, if that repository is not using
      file:// (which is highly likely to be the case), or the repository is
      not on a local filesystem, deployment will fail when offline.
    
    ** Testing mojos
    
      This can be a problem if the tests are more than simple unit tests;
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

    code into a file also containing Oracle's GPLv2 licensed code and then
    distributing the result.  Additionally, if you were to remove the
    Classpath Exception from any of the files to which it applies and
    distribute the result, you would likely be required to license some or
    all of the other code in that distribution under the GPLv2 as well, and
    since the GPLv2 is incompatible with the license terms of some items
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
Back to top