Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Effect (0.24 sec)

  1. maven-core/src/main/mdo/extension.mdo

              i.e. referencing any of those coordinates in plugin/build extension dependencies has no effect.]]>
              </description>
            </field>
          </fields>
        </class>
      </classes>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/SnapshotTransformation.java

                // TODO Should this be changed for MNG-6754 too?
                snapshot.setTimestamp(getDeploymentTimestamp());
    
                // we update the build number anyway so that it doesn't get lost. It requires the timestamp to take effect
                try {
                    int buildNumber = resolveLatestSnapshotBuildNumber(artifact, localRepository, remoteRepository);
    
                    snapshot.setBuildNumber(buildNumber + 1);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

     *
     * A side effect of using @Typed is that it translates to explicit bindings in the container.
     * So instead of binding the component under a 'wildcard' key it is now bound with an explicit
     * key. Since this is a default component this will be a plain binding of ModelProcessor to
     * this implementation type, ie. no hint/name.
     *
     * This leads to a second side effect in that any @Inject request for just ModelProcessor in
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

                legacySupport.setSession(oldSession);
            }
        }
    
        /**
         * TODO pluginDescriptor classRealm and artifacts are set as a side effect of this
         *      call, which is not nice.
         * @throws PluginResolutionException
         */
        public ClassRealm getPluginRealm(MavenSession session, PluginDescriptor pluginDescriptor)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

        given a distinguishing version number. Except as provided in Section
        4.3, no one other than the license steward has the right to modify
        this License.
    
        4.2. Effect of New Versions.
    
        You may always continue to use, distribute or otherwise make the
        Covered Software available under the terms of the version of the
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/offline-mode.apt

      feedback for that case. However, when offline mode is declared, nothing
      earmarked as remote should be accessed, regardless of whether it is actually
      a physically local resource.
    
      NOTE: One side-effect of this design change is that all offline-mode code can
      be isolated to maven-core, maven-plugin-descriptor, and [possibly]
      maven-artifact. Usage of maven-wagon will be determined by an offline-aware
      manager.
    
    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. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

        // required after the execution of 9) as the AbstractLifecycleParticipants are free to mutate the MavenProject
        // instances, which may change dependencies which can, in turn, affect the build order.
        //
        // 11) Execute LifecycleStarter.start()
        //
        @SuppressWarnings("checkstyle:methodlength")
        private MavenExecutionResult doExecute(MavenExecutionRequest request) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 27.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                addViolation(
                        problems,
                        BuilderProblem.Severity.WARNING,
                        "usePluginRegistry",
                        null,
                        "is deprecated and has no effect.");
            }
    
            List<String> pluginGroups = settings.getPluginGroups();
    
            if (pluginGroups != null) {
                for (int i = 0; i < pluginGroups.size(); i++) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollectorRequest.java

             * Adds the specified managed dependency.
             *
             * @param managedDependency The managed dependency to add, may be {@code null} in which case the call
             *                          will have no effect.
             * @return this request for chaining, never {@code null}
             */
            @Nonnull
            public DependencyCollectorRequestBuilder managedDependency(@Nullable DependencyCoordinate managedDependency) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/TransportProvider.java

     * probably roll its own.
     * <p>
     * This implementation is backed by Maven Resolver API, supported protocols and transport selection depends on it. If
     * resolver preference regarding transport is altered, it will affect this service as well.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface TransportProvider extends Service {
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.1K bytes
    - Viewed (0)
Back to top