Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for global (0.17 sec)

  1. 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.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .hasArg()
                    .build());
            options.addOption(Option.builder(ALTERNATE_GLOBAL_SETTINGS)
                    .longOpt("global-settings")
                    .desc("Alternate path for the global settings file")
                    .hasArg()
                    .build());
            options.addOption(Option.builder(Character.toString(ALTERNATE_USER_TOOLCHAINS))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        MavenExecutionRequest setUserToolchainsFile(File userToolchainsFile);
    
        /**
         *
         *
         * @return the global toolchains file
         * @since 3.3.0
         */
        File getGlobalToolchainsFile();
    
        /**
         *
         * @param globalToolchainsFile the global toolchains file
         * @return this request
         * @since 3.3.0
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. api/maven-api-settings/src/main/mdo/settings.mdo

            this instance (USER|GLOBAL)
          </description>
          <codeSegments>
            <codeSegment>
              <version>1.0.0/1.3.0</version>
              <code>
        public static final String USER_LEVEL = "user-level";
        public static final String PROJECT_LEVEL = "project-level";
        public static final String GLOBAL_LEVEL = "global-level";
    
        private String sourceLevel = USER_LEVEL;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        private List<String> pluginGroups;
    
        private boolean isProjectPresent = true;
    
        // ----------------------------------------------------------------------------
        // We need to allow per execution user and global settings as the embedder
        // might be running in a mode where it's executing many threads with totally
        // different settings.
        // ----------------------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

             * local artifact resolution. In the second case, the result needs to precisely obey the path information of the
             * repository's layout to allow pointing at artifacts within the repository. Unfortunately,
             * DefaultRepositoryLayout does not correctly describe the layout of a local repository which unlike a remote
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/ReactorReader.java

     *
     */
    @Named(ReactorReader.HINT)
    @SessionScoped
    class ReactorReader implements MavenWorkspaceReader {
        public static final String HINT = "reactor";
    
        public static final String PROJECT_LOCAL_REPO = "project-local-repo";
    
        private static final Collection<String> COMPILE_PHASE_TYPES = new HashSet<>(
                Arrays.asList("jar", "ejb-client", "war", "rar", "ejb3", "par", "sar", "wsr", "har", "app-client"));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/offline-mode.apt

      This one is obvious...we only have access to the repositories using
      the file:// protocol and living on a truly local filesystem when
      offline.
    
    ** Plugin Resolution
    
      This is similar to dependency resolution. Plugin repositories not
      using file:// or not residing on a local (not shared) filesystem will
      be unavailable.
    
    
    * Implications for Mojo Execution
    
    ** Deployment mojos
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        <T extends Service> T getService(@Nonnull Class<T> clazz);
    
        /**
         * Creates a derived session using the given local repository.
         *
         * @param localRepository the new local repository
         * @return the derived session
         * @throws NullPointerException if {@code localRepository} is null
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertContains(result.getErrors().get(1), "'pluginRepositories.pluginRepository.id' must not be 'local'");
            assertContains(result.getErrors().get(2), "'distributionManagement.repository.id' must not be 'local'");
            assertContains(result.getErrors().get(3), "'distributionManagement.snapshotRepository.id' must not be 'local'");
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top