Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withUserProperties (0.88 sec)

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

                        invokerRequest.rootDirectory().get().toString());
            }
            this.protoSession = ProtoSession.newBuilder()
                    .withSystemProperties(invokerRequest.systemProperties())
                    .withUserProperties(user)
                    .withTopDirectory(invokerRequest.topDirectory())
                    .withRootDirectory(invokerRequest.rootDirectory().orElse(null))
                    .build();
        }
    
        public Logger logger;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/ProtoSession.java

                this.startTime = startTime;
                this.topDirectory = topDirectory;
                this.rootDirectory = rootDirectory;
            }
    
            public Builder withUserProperties(@Nonnull Map<String, String> userProperties) {
                this.userProperties = new HashMap<>(userProperties);
                return this;
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 7.5K bytes
    - Viewed (0)
Back to top