Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ProtoSession (0.12 sec)

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

                this.rootDirectory = rootDirectory;
                return this;
            }
    
            public ProtoSession build() {
                return new Impl(userProperties, systemProperties, startTime, topDirectory, rootDirectory);
            }
    
            private static class Impl implements ProtoSession {
                private final Map<String, String> userProperties;
                private final Map<String, String> systemProperties;
    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/services/ProblemCollector.java

         *
         * @param <P> the type of problem
         * @param protoSession the session containing configuration for the problem collector
         * @return a new problem collector instance
         */
        @Nonnull
        static <P extends BuilderProblem> ProblemCollector<P> create(@Nullable ProtoSession protoSession) {
            if (protoSession != null
                    && protoSession.getUserProperties().containsKey(Constants.MAVEN_BUILDER_MAX_PROBLEMS)) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 18 17:30:19 UTC 2025
    - 11.4K bytes
    - Viewed (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();
    
        /**
    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