Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setUpdateSnapshots (0.12 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        TransferListener getTransferListener();
    
        // Logging
        MavenExecutionRequest setLoggingLevel(int loggingLevel);
    
        int getLoggingLevel();
    
        // Update snapshots
        MavenExecutionRequest setUpdateSnapshots(boolean updateSnapshots);
    
        boolean isUpdateSnapshots();
    
        MavenExecutionRequest setNoSnapshotUpdates(boolean noSnapshotUpdates);
    
        boolean isNoSnapshotUpdates();
    
        // Checksum policy
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java

            request.setRecursive(!options.nonRecursive().orElse(!request.isRecursive()));
            request.setOffline(options.offline().orElse(request.isOffline()));
            request.setUpdateSnapshots(options.updateSnapshots().orElse(false));
            request.setGlobalChecksumPolicy(determineGlobalChecksumPolicy(context));
    
            Path pom = determinePom(context);
            if (pom != null) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            enableOnPresentOption(commandLine, CLIManager.OFFLINE, request::setOffline);
            enableOnPresentOption(commandLine, CLIManager.UPDATE_SNAPSHOTS, request::setUpdateSnapshots);
            request.setGlobalChecksumPolicy(determineGlobalCheckPolicy(commandLine));
            request.setBaseDirectory(baseDirectory);
            request.setSystemProperties(cliRequest.systemProperties);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
Back to top