Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for beydom (0.25 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            }
    
            XmlNode dom = mojoExecution.getConfiguration() != null
                    ? mojoExecution.getConfiguration().getDom()
                    : null;
    
            PlexusConfiguration pomConfiguration;
    
            if (dom == null) {
                pomConfiguration = new DefaultPlexusConfiguration("configuration");
            } else {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            XmlNode executionConfiguration = mojoExecution.getConfiguration() != null
                    ? mojoExecution.getConfiguration().getDom()
                    : null;
            if (executionConfiguration == null) {
                executionConfiguration = new XmlNodeImpl("configuration");
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    "org.apache.maven.its.plugins:maven-it-plugin:0.1:java", session, session.getCurrentProject());
            XmlNode dom = MojoDescriptorCreator.convert(mojoDescriptor).getDom();
            System.out.println(dom);
        }
    
        MavenExecutionPlan calculateExecutionPlan(MavenSession session, String... tasks) throws Exception {
            List<TaskSegment> taskSegments =
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
Back to top