Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MavenCli (0.09 sec)

  1. 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)
  2. 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