Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for withSystemProperties (0.06 sec)

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

                user.put(
                        "session.rootDirectory",
                        invokerRequest.rootDirectory().get().toString());
            }
            this.protoSession = ProtoSession.newBuilder()
                    .withSystemProperties(invokerRequest.systemProperties())
                    .withUserProperties(user)
                    .withTopDirectory(invokerRequest.topDirectory())
                    .withRootDirectory(invokerRequest.rootDirectory().orElse(null))
    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

            public Builder withUserProperties(@Nonnull Map<String, String> userProperties) {
                this.userProperties = new HashMap<>(userProperties);
                return this;
            }
    
            public Builder withSystemProperties(@Nonnull Map<String, String> systemProperties) {
                this.systemProperties = new HashMap<>(systemProperties);
                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