Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for inherit (0.26 sec)

  1. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml

      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- inherit via <pluginManagement> -->
              <groupId>org.apache.maven.its.plugins</groupId>
              <artifactId>maven-it-plugin-configuration</artifactId>
              <version>2.1-SNAPSHOT</version>
              <inherited>true</inherited>
              <configuration>
                <listParam>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/profile-module-inheritance/sub/pom.xml

    <project>
        <parent>
        <groupId>org.ops4j.pax</groupId>
        <artifactId>construct</artifactId>
        <version>1.0</version>
      </parent>
    
      <modelVersion>4.0.0</modelVersion>
      <groupId>org.ops4j</groupId>
      <artifactId>maven-inherit-plugin</artifactId>
      <version>1.1</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 291 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/projects/parent-version-range-local-child-without-version/child/pom.xml

      <parent>
        <groupId>parent-version-range-local</groupId>
        <artifactId>parent</artifactId>
        <version>[1,10]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- version>1</version Must not inherit version from parent due to version range. -->
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Fri Feb 10 21:46:52 GMT 2017
    - 348 bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/api/services/model/InheritanceAssembler.java

         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
         *            <code>null</code>.
         * @param parent The (read-only) parent model from which to inherit the values, may be <code>null</code>.
         * @param request The model building request that holds further settings, must not be {@code null}.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12/ProjectInheritanceTest.java

    /**
     * Verifies that plugin execution sections in the parent POM that have
     * inherit == false are not inherited to the child POM.
     */
    @Deprecated
    class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
        // ----------------------------------------------------------------------
        //
        // p1 inherits from p0
        // p0 inherits from super model
        //
        // or we can show it graphically as:
        //
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/projects/parent-version-range-external-child-without-version/pom.xml

      <parent>
        <groupId>org.apache</groupId>
        <artifactId>apache</artifactId>
        <version>[1,1]</version>
      </parent>
      <artifactId>child</artifactId>
      <!-- version>2</version Must not inherit version from parent due to version range. -->
      <packaging>pom</packaging>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Fri Feb 10 21:46:52 GMT 2017
    - 331 bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/profile-module-inheritance/pom.xml

      <groupId>org.ops4j.pax</groupId>
      <artifactId>construct</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    
      <profiles>
        <profile>
          <id>dist</id>
          <modules>
            <module>maven-inherit-plugin</module>
            <module>maven-pax-plugin</module>
          </modules>
        </profile>
        </profiles>
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 385 bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-config-append/with-profile/pom.xml

      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- inherit via <pluginManagement> -->
              <groupId>org.apache.maven.its.plugins</groupId>
              <artifactId>maven-it-plugin-configuration</artifactId>
              <version>2.1-SNAPSHOT</version>
              <inherited>true</inherited>
              <configuration>
                <listParam>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProvider.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.model.Model;
    
    /**
     * Provides the super POM that all models implicitly inherit from.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface SuperPomProvider extends Service {
    
        /**
         * Gets the super POM for the specified model version.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:54:53 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/project/inheritance/t10/ProjectInheritanceTest.java

     * 3. Direct dependencies should inherit scope from dependencyManagement when
     *    they do not explicitly state a scope.
     *
     */
    @Deprecated
    class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
        // ----------------------------------------------------------------------
        //
        // p1 inherits from p0
        // p0 inherits from super model
        //
        // or we can show it graphically as:
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.6K bytes
    - Viewed (0)
Back to top