Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 449 for invoker (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Invoker.java

     *
     * <p>The Invoker is designed to be flexible, allowing for different implementations
     * that can handle various types of {@link InvokerRequest InvokerRequests}. It also implements
     * {@link AutoCloseable} to ensure proper resource management.</p>
     *
     * @since 4.0.0
     */
    @Experimental
    public interface Invoker extends AutoCloseable {
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 31 20:56:58 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  2. impl/maven-cli/src/main/resources/META-INF/services/org.apache.maven.cling.invoker.cisupport.CIDetector

    org.apache.maven.cling.invoker.cisupport.CircleCIDetector
    org.apache.maven.cling.invoker.cisupport.GenericCIDetector
    org.apache.maven.cling.invoker.cisupport.GithubCIDetector
    org.apache.maven.cling.invoker.cisupport.JenkinsCIDetector
    org.apache.maven.cling.invoker.cisupport.TeamcityCIDetector
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Apr 13 18:50:07 GMT 2025
    - 352 bytes
    - Click Count (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/MavenEncCling.java

    import org.apache.maven.api.annotations.Nullable;
    import org.apache.maven.api.cli.Invoker;
    import org.apache.maven.api.cli.Parser;
    import org.apache.maven.api.cli.ParserRequest;
    import org.apache.maven.cling.invoker.ProtoLookup;
    import org.apache.maven.cling.invoker.mvnenc.EncryptInvoker;
    import org.apache.maven.cling.invoker.mvnenc.EncryptParser;
    import org.codehaus.plexus.classworlds.ClassWorld;
    
    /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 3K bytes
    - Click Count (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/MavenShellCling.java

    import java.io.OutputStream;
    
    import org.apache.maven.api.annotations.Nullable;
    import org.apache.maven.api.cli.Invoker;
    import org.apache.maven.api.cli.Parser;
    import org.apache.maven.api.cli.ParserRequest;
    import org.apache.maven.cling.invoker.ProtoLookup;
    import org.apache.maven.cling.invoker.mvnsh.ShellInvoker;
    import org.apache.maven.cling.invoker.mvnsh.ShellParser;
    import org.codehaus.plexus.classworlds.ClassWorld;
    
    /**
     * Maven shell.
     */
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 3K bytes
    - Click Count (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/package-info.java

     * </ul>
     *
     * <h3>Utility Classes</h3>
     * <ul>
     *   <li>{@link org.apache.maven.cling.invoker.mvnup.goals.StrategyOrchestrator} - Coordinates strategy execution</li>
     *   <li>{@link org.apache.maven.cling.invoker.mvnup.goals.PomDiscovery} - Discovers POM files in multi-module projects</li>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  6. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/resident/ResidentMavenInvokerTest.java

     * under the License.
     */
    package org.apache.maven.cling.invoker.mvn.resident;
    
    import java.nio.file.FileSystem;
    import java.nio.file.Path;
    import java.util.List;
    
    import com.google.common.jimfs.Configuration;
    import com.google.common.jimfs.Jimfs;
    import org.apache.maven.api.cli.Invoker;
    import org.apache.maven.api.cli.Parser;
    import org.apache.maven.cling.invoker.ProtoLookup;
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Oct 16 10:47:37 GMT 2025
    - 2.5K bytes
    - Click Count (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java

    import org.jline.utils.Colors;
    import org.jline.utils.OSUtils;
    
    import static org.apache.maven.cling.invoker.mvnenc.EncryptInvoker.BAD_OPERATION;
    import static org.apache.maven.cling.invoker.mvnenc.EncryptInvoker.CANCELED;
    import static org.apache.maven.cling.invoker.mvnenc.EncryptInvoker.OK;
    
    /**
     * The "init" goal.
     */
    @Singleton
    @Named("init")
    public class Init extends InteractiveGoalSupport {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 12K bytes
    - Click Count (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java

            requireNonNull(invoker, "invoker");
            requireNonNull(context, "context");
            requireNonNull(coreExtensionSelector, "coreExtensionSelector");
            return new PlexusContainerCapsule(
                    context,
                    Thread.currentThread().getContextClassLoader(),
                    container(invoker, context, coreExtensionSelector));
        }
    
        protected DefaultPlexusContainer container(
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jul 03 14:18:26 GMT 2025
    - 14.3K bytes
    - Click Count (0)
  9. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTestSupport.java

            }
    
            HashMap<String, String> logs = new HashMap<>();
            Parser parser = createParser();
            try (ClassWorld classWorld = createClassWorld();
                    Invoker invoker = createInvoker(classWorld)) {
                for (String goal : goals) {
                    ByteArrayOutputStream stdout = new ByteArrayOutputStream();
                    ByteArrayOutputStream stderr = new ByteArrayOutputStream();
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Oct 21 12:17:55 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellCommandRegistryFactory.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.cling.invoker.mvnsh;
    
    import org.apache.maven.cling.invoker.LookupContext;
    import org.jline.console.CommandRegistry;
    
    public interface ShellCommandRegistryFactory {
        CommandRegistry createShellCommandRegistry(LookupContext context);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 17 09:50:45 GMT 2024
    - 1K bytes
    - Click Count (0)
Back to Top