Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for global (0.24 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

                            relocation.global ? "User global relocation" : "User project relocation");
                    LOGGER.debug(
                            "The artifact {} has been relocated to {}: {}",
                            original,
                            result,
                            relocation.global ? "User global relocation" : "User project relocation");
                    return result;
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultToolchainsBuilder.java

            PersistedToolchains global = readToolchains(globalSource, request, problems);
    
            Source userSource = request.getUserToolchainsSource().orElse(null);
            PersistedToolchains user = readToolchains(userSource, request, problems);
    
            PersistedToolchains effective = toolchainsMerger.merge(user, global, false, null);
    
            if (hasErrors(problems)) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java

    /**
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ToolchainsBuilderRequest {
        @Nonnull
        Session getSession();
    
        /**
         * Gets the global Toolchains source.
         *
         * @return the global Toolchains source or {@code null} if none
         */
        @Nonnull
        Optional<Source> getGlobalToolchainsSource();
    
        /**
         * Gets the user Toolchains source.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/providers/DefaultLifecycleProvider.java

            "deploy"
        };
        // END SNIPPET: default
    
        @Inject
        public DefaultLifecycleProvider() {
            super(
                    LIFECYCLE_ID,
                    PHASES,
                    null // no global plugin bindings for default lifecycle: they are defined per-packaging in separate
                    // providers
                    );
        }
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jan 16 13:30:48 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsBuilder.java

            Settings user = readSettings(userSource, false, request, problems);
    
            Settings effective =
                    settingsMerger.merge(user, settingsMerger.merge(project, global, false, null), false, null);
    
            // If no repository is defined in the user/global settings,
            // it means that we have "old" settings (as those are new in 4.0)
            // so add central to the computed settings for backward compatibility.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 12K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorBuildStatus.java

    import org.apache.maven.execution.ProjectDependencyGraph;
    import org.apache.maven.lifecycle.internal.builder.BuilderCommon;
    import org.apache.maven.project.MavenProject;
    
    /**
     * Contains status information that is global to an entire reactor build.
     *
     * @since 3.0
     */
    public class ReactorBuildStatus {
        private final ProjectDependencyGraph projectDependencyGraph;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/DefaultProjectDependenciesResolver.java

                    && (scopesToResolve == null || scopesToResolve.isEmpty())) {
                return resolved;
            }
    
            /*
    
            Logic for transitive global exclusions
    
            List<String> exclusions = new ArrayList<String>();
    
            for ( Dependency d : project.getDependencies() )
            {
                if ( d.getExclusions() != null )
                {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 8.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilder.java

    import org.apache.maven.api.Session;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * Builds the effective toolchains from a user toolchains file and/or a global toolchains file.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface ToolchainsBuilder extends Service {
    
        /**
         * Builds the effective toolchains for the specified toolchains files.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/settings/MavenSettingsBuilder.java

        String ROLE = MavenSettingsBuilder.class.getName();
    
        String ALT_USER_SETTINGS_XML_LOCATION = "org.apache.maven.user-settings";
        String ALT_GLOBAL_SETTINGS_XML_LOCATION = "org.apache.maven.global-settings";
        String ALT_LOCAL_REPOSITORY_LOCATION = "maven.repo.local";
    
        Settings buildSettings(MavenExecutionRequest request) throws IOException, XmlPullParserException;
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilder.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.settings.Settings;
    
    /**
     * Builds the effective settings from a user settings file and/or a global settings file.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface SettingsBuilder extends Service {
    
        /**
         * Builds the effective settings of the specified settings files.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
Back to top