Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ProtoSession (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

         */
        protected void pushUserProperties(C context) throws Exception {
            ProtoSession protoSession = context.protoSession;
            HashSet<String> sys = new HashSet<>(protoSession.getSystemProperties().keySet());
            if (context.pushedUserProperties == null) {
                context.pushedUserProperties = new HashSet<>();
                protoSession.getUserProperties().entrySet().stream()
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Oct 28 13:01:07 GMT 2025
    - 43.2K bytes
    - Click Count (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                            "The specified user toolchains file does not exist: " + userToolchainsFile);
                }
            } else {
                String userToolchainsFileStr =
                        context.protoSession.getEffectiveProperties().get(Constants.MAVEN_USER_TOOLCHAINS);
                if (userToolchainsFileStr != null) {
                    userToolchainsFile = context.cwd.resolve(userToolchainsFileStr);
                }
            }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Sep 11 17:20:46 GMT 2025
    - 28.2K bytes
    - Click Count (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

    import org.apache.maven.api.toolchain.ToolchainModel;
    
    /**
     * The session to install / deploy / resolve artifacts and dependencies.
     *
     * @since 4.0.0
     */
    @Experimental
    @ThreadSafe
    public interface Session extends ProtoSession {
    
        /**
         * Returns the current maven version.
         *
         * @return the maven version, never {@code null}
         */
        @Nonnull
        Version getMavenVersion();
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jul 03 14:18:26 GMT 2025
    - 36.5K bytes
    - Click Count (0)
Back to Top