Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for MavenCli (0.18 sec)

  1. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 20 18:34:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/maven/bin/m2.conf

    main is org.apache.maven.cli.MavenCli from plexus.core
    
    set maven.conf default ${maven.home}/conf
    
    [plexus.core]
    load       ${maven.conf}/logging
    optionally ${maven.home}/lib/ext/redisson/*.jar
    optionally ${maven.home}/lib/ext/hazelcast/*.jar
    optionally ${user.home}/.m2/ext/*.jar
    optionally ${maven.home}/lib/ext/*.jar
    load       ${maven.home}/lib/maven-*.jar
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Oct 18 18:06:57 UTC 2023
    - 396 bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

        }
    
        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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

        List<String> getInactiveProfileIds();
    
        /**
         * Add a {@link org.apache.maven.model.Profile} that has come from an external source. This may be from a custom
         * configuration like the MavenCLI settings.xml file, or from a custom dialog in an IDE integration like M2Eclipse.
         *
         * @param profile
         */
        void addProfile(Profile profile);
    
        void setProfiles(List<Profile> profiles);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top