Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for reportPlugins (0.11 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java

                        .setLocation( reporting.getLocation( "" ) ) );
            }*/
    
            for (ReportPlugin plugin : reporting.getPlugins()) {
                Xpp3Dom reportPlugin = convert(plugin);
                reportPlugins.addChild(reportPlugin);
    
                if (!reporting.isExcludeDefaults()
                        && !hasMavenProjectInfoReportsPlugin
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportingConverter.java

    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles conversion of the <code>&lt;reporting&gt;</code> section into the configuration of Maven Site Plugin 3.x,
     * i.e. <code>reportPlugins</code> and <code>outputDirectory</code> parameters.
     *
     * @deprecated since maven 4.0, this interface is not used anymore and is only here for compatibility
     */
    @Deprecated
    public interface ReportingConverter {
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java

                List<ReportPlugin> src = source.getPlugins();
                if (!src.isEmpty()) {
                    List<ReportPlugin> tgt = target.getPlugins();
                    Map<Object, ReportPlugin> merged = new LinkedHashMap<>((src.size() + tgt.size()) * 2);
    
                    for (ReportPlugin element : tgt) {
                        Object key = getReportPluginKey(element);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. compat/maven-model/src/test/java/org/apache/maven/model/ReportPluginTest.java

    /**
     * Tests {@code ReportPlugin}.
     *
     */
    class ReportPluginTest {
    
        @Test
        void testHashCodeNullSafe() {
            new ReportPlugin().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new ReportPlugin().equals(null));
    
            new ReportPlugin().equals(new ReportPlugin());
        }
    
        @Test
        void testEqualsIdentity() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactory.java

        }
    
        @Nonnull
        default DependencyCoordinates create(@Nonnull Session session, ReportPlugin reportPlugin) {
            // TODO: hard coded string
            return create(DependencyCoordinatesFactoryRequest.build(
                    session,
                    reportPlugin.getGroupId(),
                    reportPlugin.getArtifactId(),
                    reportPlugin.getVersion(),
                    null,
                    null,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                List<ReportPlugin> src = source.getPlugins();
                if (!src.isEmpty()) {
                    List<ReportPlugin> tgt = target.getPlugins();
                    Map<Object, ReportPlugin> merged = new LinkedHashMap<>((src.size() + tgt.size()) * 2);
    
                    for (ReportPlugin element : src) {
                        Object key = getReportPluginKey(element);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportConfigurationExpander.java

            Reporting reporting = model.getReporting();
    
            if (reporting != null) {
                for (ReportPlugin reportPlugin : reporting.getPlugins()) {
                    Xpp3Dom parentDom = (Xpp3Dom) reportPlugin.getConfiguration();
    
                    if (parentDom != null) {
                        for (ReportSet execution : reportPlugin.getReportSets()) {
                            Xpp3Dom childDom = (Xpp3Dom) execution.getConfiguration();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/plugin/PluginLoaderException.java

            super(message, cause);
        }
    
        public PluginLoaderException(ReportPlugin plugin, String message, Throwable cause) {
            super(message, cause);
            pluginKey = plugin.getKey();
        }
    
        public PluginLoaderException(ReportPlugin plugin, String message) {
            super(message);
            pluginKey = plugin.getKey();
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileToRawModelMerger.java

                Map<Object, Object> context) {
            // don't merge
        }
    
        @Override
        protected void mergeReportPlugin_ReportSets(
                ReportPlugin.Builder builder,
                ReportPlugin target,
                ReportPlugin source,
                boolean sourceDominant,
                Map<Object, Object> context) {
            // don't merge
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  10. compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java

        protected Object getPluginExecutionKey(PluginExecution pluginExecution) {
            return pluginExecution.getId();
        }
    
        @Override
        protected Object getReportPluginKey(ReportPlugin reportPlugin) {
            return reportPlugin.getKey();
        }
    
        @Override
        protected Object getReportSetKey(ReportSet reportSet) {
            return reportSet.getId();
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 21.7K bytes
    - Viewed (0)
Back to top