Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ReportingConverter (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

     * 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 {
    
        /**
         * Converts values from model's reporting section into the configuration for Maven Site Plugin 3.x.
         *
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.9K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            this.reportConfigurationExpander = reportConfigurationExpander;
            return this;
        }
    
        public DefaultModelBuilder setReportingConverter(ReportingConverter reportingConverter) {
            this.reportingConverter = reportingConverter;
            return this;
        }
    
        public DefaultModelBuilder setProfileActivationFilePathInterpolator(
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Mar 30 23:08:08 GMT 2025
    - 55.3K bytes
    - Click Count (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java

     *
     * @deprecated since maven 4.0, this class is now a no-op class and is only here for compatibility
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultReportingConverter implements ReportingConverter {
        private final InputLocation location;
    
        {
            String modelId = "org.apache.maven:maven-model-builder:"
                    + this.getClass().getPackage().getImplementationVersion() + ":reporting-converter";
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 9.4K bytes
    - Click Count (0)
Back to Top