Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MavenCli (0.05 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                throw e;
            }
    
            try {
                CommandLine mavenCli = cliManager.parse(cliRequest.args);
                if (mavenConfig == null) {
                    cliRequest.commandLine = mavenCli;
                } else {
                    cliRequest.commandLine = cliMerge(mavenConfig, mavenCli);
                }
            } catch (ParseException e) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

    class MavenCliTest {
        private MavenCli cli;
    
        private String origBasedir;
    
        @BeforeEach
        void setUp() {
            cli = new MavenCli();
            origBasedir = System.getProperty(MavenCli.MULTIMODULE_PROJECT_DIRECTORY);
        }
    
        @AfterEach
        void tearDown() throws Exception {
            if (origBasedir != null) {
                System.setProperty(MavenCli.MULTIMODULE_PROJECT_DIRECTORY, origBasedir);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/site/apt/index.apt.vm

     -----
     ${project.name}
     -----
     Hervé Boutemy
     -----
     2016-11-14
     -----
    
    ${project.name}
    
     ${project.description}
    
    * Useful entry points
    
     * {{{./apidocs/org/apache/maven/cli/MavenCli.html}MavenCli.doMain(CliRequest)}} is the main method preparing runtime environment before running {{{../maven-core/}Maven.execute()}}
    
    * References
    
     * {{{./cli.html}CLI options}},
    
     * {{{./logging.html}logging API}}.
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

        }
    
        public static Properties getBuildProperties() {
            Properties properties = new Properties();
    
            try (InputStream resourceAsStream =
                    MavenCli.class.getResourceAsStream("/org/apache/maven/messages/build.properties")) {
    
                if (resourceAsStream != null) {
                    properties.load(resourceAsStream);
                }
            } catch (IOException e) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top