Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DiInjected (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * {@code <groupId>:<artifactId>:<version>} for a POM profile or {@code external} for profiles from the
         * {@code settings.xml}.
         *
         * @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;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        }
    
        /** MNG-4027*/
        @Test
        void testProfileInjectedDependencies() throws Exception {
            PomTestWrapper pom = buildPom("profile-injected-dependencies");
            assertEquals(4, ((List<?>) pom.getValue("dependencies")).size());
            assertEquals("a", pom.getValue("dependencies[1]/artifactId"));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
Back to top