Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for doCloseContainer (0.05 sec)

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

        }
    
        public SimplexTransferListener simplexTransferListener;
        public Maven maven;
    
        @Override
        public void doCloseContainer() throws Exception {
            try {
                super.doCloseContainer();
            } finally {
                maven = null;
            }
        }
    
        @Override
        public MavenOptions options() {
            return (MavenOptions) super.options();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupContext.java

                throw exception;
            }
        }
    
        public final void closeContainer() throws Exception {
            if (containerCapsuleManaged) {
                doCloseContainer();
            }
        }
    
        public void doCloseContainer() throws Exception {
            if (containerCapsule != null) {
                try {
                    containerCapsule.close();
                } finally {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/resident/ResidentMavenInvoker.java

        public void close() throws InvokerException {
            ArrayList<Exception> exceptions = new ArrayList<>();
            for (MavenContext context : residentContext.values()) {
                try {
                    context.doCloseContainer();
                } catch (Exception e) {
                    exceptions.add(e);
                }
            }
            if (!exceptions.isEmpty()) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 4.1K bytes
    - Viewed (0)
Back to top