Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 21 12:17:55 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/resident/ResidentMavenInvokerTest.java

    import org.junit.jupiter.api.io.TempDir;
    
    /**
     * Resident UT.
     */
    @Order(100)
    public class ResidentMavenInvokerTest extends MavenInvokerTestSupport {
    
        @Override
        protected Invoker createInvoker(ClassWorld classWorld) {
            return new ResidentMavenInvoker(
                    ProtoLookup.builder().addMapping(ClassWorld.class, classWorld).build(), null);
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 10:47:37 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Local UT.
     */
    @Order(200)
    public class MavenInvokerTest extends MavenInvokerTestSupport {
        @Override
        protected Invoker createInvoker(ClassWorld classWorld) {
            return new MavenInvoker(
                    ProtoLookup.builder().addMapping(ClassWorld.class, classWorld).build(), null);
        }
    
        @Override
        protected Parser createParser() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 21 12:17:55 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top