Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for Webargs (0.07 sec)

  1. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            assertEquals("C:\\myRootDirectory/my-child", request.getCommandLine().getOptionValue('f'));
            assertArrayEquals(
                    new String[] {"prefix:3.0.0:bar", "validate"},
                    request.getCommandLine().getArgs());
    
            Path p = fs.getPath(request.getUserProperties().getProperty("valTopDirectory"));
            assertEquals("C:\\myRootDirectory\\myTopDirectory\\pom.xml", p.toString());
        }
    
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            CommandLine.Builder commandLineBuilder = new CommandLine.Builder();
    
            // the args are easy, CLI only since maven.config file can only contain options
            for (String arg : mavenCli.getArgs()) {
                commandLineBuilder.addArg(arg);
            }
    
            /* Although this looks wrong in terms of order Commons CLI stores the value of options in
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
Back to top