- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getInjectedProfileIds (0.08 sec)
-
impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java
assertTrue(project.getInjectedProfileIds().keySet().containsAll(List.of("external", id))); assertTrue(project.getInjectedProfileIds().get("external").isEmpty()); assertTrue(project.getInjectedProfileIds().get(id).stream().anyMatch("profile1"::equals)); assertTrue(project.getInjectedProfileIds().get(id).stream().noneMatch("profile2"::equals));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 33.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
* * @return The identifiers of all injected profiles, indexed by the source from which the profiles originated, never * {@code null}. */ public Map<String, List<String>> getInjectedProfileIds() { return this.injectedProfileIds; } /** * Add or replace an artifact. This method is now deprecated. Use the @{MavenProjectHelper} to attach artifacts to aRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0)