Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ProtoSession (0.04 sec)

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

        protected List<Path> parseExtClasspath(C context) throws Exception {
            ProtoSession protoSession = context.protoSession;
            String extClassPath = protoSession.getUserProperties().get(Constants.MAVEN_EXT_CLASS_PATH);
            if (extClassPath == null) {
                extClassPath = protoSession.getSystemProperties().get(Constants.MAVEN_EXT_CLASS_PATH);
                if (extClassPath != null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 14.3K 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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jul 18 17:30:19 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

         */
        protected void pushUserProperties(C context) throws Exception {
            ProtoSession protoSession = context.protoSession;
            HashSet<String> sys = new HashSet<>(protoSession.getSystemProperties().keySet());
            if (context.pushedUserProperties == null) {
                context.pushedUserProperties = new HashSet<>();
                protoSession.getUserProperties().entrySet().stream()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                            "The specified user toolchains file does not exist: " + userToolchainsFile);
                }
            } else {
                String userToolchainsFileStr =
                        context.protoSession.getEffectiveProperties().get(Constants.MAVEN_USER_TOOLCHAINS);
                if (userToolchainsFileStr != null) {
                    userToolchainsFile = context.cwd.resolve(userToolchainsFileStr);
                }
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  5. 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 Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
Back to top