Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for withUserProperties (0.07 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)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                    .lookup(PropertyContributorsHolder.class)
                    .getPropertyContributors()
                    .values()) {
                protoSession = protoSession.toBuilder()
                        .withUserProperties(propertyContributor.contribute(protoSession))
                        .build();
            }
            context.protoSession = protoSession;
        }
    
        protected void lookup(C context) throws Exception {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
Back to top