Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for reporting (0.4 sec)

  1. maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java

                build.setTestOutputDirectory(alignToBaseDirectory(build.getTestOutputDirectory(), basedir));
            }
    
            Reporting reporting = model.getReporting();
    
            if (reporting != null) {
                reporting.setOutputDirectory(alignToBaseDirectory(reporting.getOutputDirectory(), basedir));
            }
        }
    
        public String alignToBaseDirectory(String path, File basedir) {
            if (basedir == null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(Boolean.TRUE, pom.getValue("reporting/excludeDefaults"));
            assertPathSuffixEquals("docs", pom.getValue("reporting/outputDirectory"));
    
            assertEquals(1, ((List<?>) pom.getValue("reporting/plugins")).size());
            assertEquals("org.apache.maven.its.plugins", pom.getValue("reporting/plugins[1]/groupId"));
            assertEquals("maven-it-plugin-reporting", pom.getValue("reporting/plugins[1]/artifactId"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileInjector.java

                    builder.executions(merged.values());
                }
            }
    
            @Override
            protected void mergeReporting_Plugins(
                    Reporting.Builder builder,
                    Reporting target,
                    Reporting source,
                    boolean sourceDominant,
                    Map<Object, Object> context) {
                List<ReportPlugin> src = source.getPlugins();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java

            msgs.add("* While this /may/ work fine, please look for plugin updates    *");
            msgs.add("* and/or request plugins be made thread-safe.                   *");
            msgs.add("* If reporting an issue, report it against the plugin in        *");
            msgs.add("* question, not against maven-core                              *");
            msgs.add("*****************************************************************");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                }
            }
            return Collections.unmodifiableList(list);
        }
    
        @Deprecated
        public void setReporting(Reporting reporting) {
            getModel().setReporting(reporting);
        }
    
        @Deprecated
        public Reporting getReporting() {
            return getModel().getReporting();
        }
    
        @Deprecated
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                            "While this /may/ work fine, please look for plugin updates and/or "
                                    + "request plugins be made thread-safe.",
                            "If reporting an issue, report it against the plugin in question, not against Apache Maven.")) {
                        logger.warn(s);
                    }
                    if (logger.isDebugEnabled()) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelPathTranslator.java

                        .build();
            }
    
            Reporting reporting = model.getReporting();
            Reporting newReporting = null;
            if (reporting != null) {
                newReporting = Reporting.newBuilder(reporting)
                        .outputDirectory(alignToBaseDirectory(reporting.getOutputDirectory(), basedir))
                        .build();
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultPluginConfigurationExpander.java

                }
                model = model.withBuild(build);
            }
            Reporting reporting = model.getReporting();
            if (reporting != null) {
                expandReport(reporting.getPlugins());
            }
            return model.withBuild(build);
        }
    
        private List<Plugin> expandPlugin(List<Plugin> oldPlugins) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            if (validationReportLevel == ValidationReportLevel.NONE
                    || validationReportLevel == ValidationReportLevel.INLINE) {
                return; // we were asked to not report anything OR reporting already happened inline
            }
            ConcurrentHashMap<String, PluginValidationIssues> issuesMap = pluginIssues(mavenSession.getRepositorySession());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

            translatedPrefixes.add("build.sourceDirectory");
            translatedPrefixes.add("build.testSourceDirectory");
            translatedPrefixes.add("build.scriptSourceDirectory");
            translatedPrefixes.add("reporting.outputDirectory");
    
            TRANSLATED_PATH_EXPRESSIONS = translatedPrefixes;
        }
    
        private final PathTranslator pathTranslator;
        private final UrlNormalizer urlNormalizer;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
Back to top