Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for E41298 (0.18 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = buildPom("system-property-interpolation", sysProps, null);
            assertEquals("PASSED", pom.getValue("name"));
        }
    
        /* MNG-4129 */
        @Test
        void testPluginExecutionInheritanceWhenChildDoesNotDeclarePlugin() throws Exception {
            PomTestWrapper pom = buildPom("plugin-exec-inheritance/wo-merge");
            @SuppressWarnings("unchecked")
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/wo-merge/pom.xml

      <parent>
        <groupId>org.apache.maven.its.mng4129</groupId>
        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child-2</artifactId>
    
      <name>Maven Integration Test :: MNG-4129 :: Child-2</name>
      <description>
        Verify that plugin executions defined in the parent with inherited=false are not executed in child modules.
      </description>
    
      <build>
        <plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/w-merge/pom.xml

      <parent>
        <groupId>org.apache.maven.its.mng4129</groupId>
        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child-1</artifactId>
    
      <name>Maven Integration Test :: MNG-4129 :: Child-1</name>
      <description>
        Verify that plugin executions defined in the parent with inherited=false are not executed in child modules.
      </description>
    
      <build>
        <plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng4129</groupId>
      <artifactId>parent</artifactId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-4129</name>
      <description>
        Verify that plugin executions defined in the parent with inherited=false are not executed in child modules.
      </description>
    
      <modules>
        <module>child-1</module>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
Back to top