- Sort Score
- Result 10 results
- Languages All
Results 11 - 14 of 14 for ReportSet (0.46 sec)
-
compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java
return getPluginKey(plugin); } } /** * KeyComputer for ReportSet */ private class ReportSetKeyComputer implements KeyComputer<ReportSet> { @Override public Object key(ReportSet reportSet) { return getReportSetKey(reportSet); } } /** * KeyComputer for Notifier */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 11:21:39 UTC 2025 - 99.2K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
* @return a Map of reportSets field with {@code ReportSet#getId()} as key * @see ReportSet#getId() */ public java.util.Map<String, ReportSet> getReportSetsAsMap() { if (reportSetMap == null) { reportSetMap = new java.util.LinkedHashMap<String, ReportSet>(); if (getReportSets() != null) { for (java.util.Iterator<ReportSet> i = getReportSets().iterator(); i.hasNext(); ) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Nov 26 03:07:35 UTC 2025 - 133.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
List<ReportSet> pluginReportSets = plugin.getReportSets(); ReportSet reportSet = pluginReportSets.stream() .filter(rs -> rs.getId().equals(expectedId)) .findFirst() .orElse(null); assertNotNull(reportSet, "Wrong id for \"" + artifactId + "\""); String config = reportSet.getConfiguration().toString(); assertTrue(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 94.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
if (reportSetId != null) { ReportSet reportSet = plugin.getReportSetsAsMap().get(reportSetId); if (reportSet != null) { Xpp3Dom executionConfiguration = (Xpp3Dom) reportSet.getConfiguration(); if (executionConfiguration != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0)