- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for report_plugin (0.15 sec)
-
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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
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()) { XmlNode parentDom = reportPlugin.getDelegate().getConfiguration(); if (parentDom != null) { for (ReportSet execution : reportPlugin.getReportSets()) { XmlNode childDom = execution.getDelegate().getConfiguration();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
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 Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileToRawModelMerger.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportingConverter.java
import org.apache.maven.model.building.ModelProblemCollector; /** * Handles conversion of the <code><reporting></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 class is now a no-op class and is only here for compatibility */ @Named @Singleton @Deprecated
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
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><reporting></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 Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0)