- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getReports (0.19 sec)
-
compat/maven-model/pom.xml
<exclude>org.apache.maven.model.ModelBase#addProperty(java.lang.String,java.lang.String):METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.ModelBase#getReports():METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.ModelBase#setReports(java.lang.Object):METHOD_REMOVED</exclude> <exclude>org.apache.maven.model.Notifier#addConfiguration(java.lang.String,java.lang.String):METHOD_REMOVED</exclude>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
{ ReportSet target = new ReportSet(); target.setReports( Arrays.asList( "first", "second", "third" ) ); ReportSet source = new ReportSet(); source.setReports( Arrays.asList( "first", "second", "third" ) ); modelMerger.mergeReportSet( target, source, true, null ); assertThat( target.getReports(), contains( "first", "second", "third" ) ); } @Test
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmRequest.java
this.constituents = constituents; } public RealmType getType() { return type; } public ClassLoader getParent() { return parent; } public List<String> getImports() { return getParentImports(); } public List<String> getParentImports() { return parentImports; } public Map<String, ClassLoader> getForeignImports() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/ConfiguredGoalSupport.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java
*/ ClassLoader getParent(); /** * @deprecated Use {@link #getParentImports()} instead. * @return imports */ @Deprecated List<String> getImports(); /** * Gets the packages/types to import from the parent realm. * * @return The modifiable list of packages/types to import from the parent realm, never {@code null}. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0)