Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getEffectiveProperties (0.12 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/ProtoSession.java

         */
        @Nonnull
        Map<String, String> getSystemProperties();
    
        /**
         * Returns the properly overlaid map of properties: system + user.
         */
        @Nonnull
        Map<String, String> getEffectiveProperties();
    
        /**
         * Returns the start time of the session.
         *
         * @return the start time as an Instant object, never {@code null}
         */
        @Nonnull
        Instant getStartTime();
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Default implementation at {@link ProtoSession} level, as the notion of project
         * does not exist there.
         */
        @Nonnull
        default Map<String, String> getEffectiveProperties() {
            return getEffectiveProperties(null);
        }
    
        /**
         * Each invocation computes a new map of effective properties. To be used in interpolation.
         * <p>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top