Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for Interpolation (0.05 sec)

  1. impl/maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

            <artifactId>plexus-classworlds</artifactId>
            <version>${classWorldsVersion}</version>
          </dependency>
          <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-interpolation</artifactId>
            <version>${plexusInterpolationVersion}</version>
          </dependency>
          <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-interactivity-api</artifactId>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java

                if (urlElement != null) {
                    String url = urlElement.textContent().trim();
                    if (url.contains("${")) {
                        // Allow repository URL interpolation; do not disable.
                        // Keep a gentle warning to help users notice unresolved placeholders at build time.
                        String repositoryId = repository.childText("id");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  3. impl/maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

            <artifactId>plexus-classworlds</artifactId>
            <version>${classWorldsVersion}</version>
          </dependency>
          <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-interpolation</artifactId>
            <version>${plexusInterpolationVersion}</version>
          </dependency>
          <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-interactivity-api</artifactId>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

    import org.apache.maven.model.building.ModelProblem.Version;
    import org.apache.maven.model.building.ModelProblemCollector;
    import org.apache.maven.model.building.ModelProblemCollectorRequest;
    import org.apache.maven.model.interpolation.ModelVersionProcessor;
    import org.codehaus.plexus.util.StringUtils;
    
    /**
     * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead
     */
    @Named
    @Singleton
    @Deprecated(since = "4.0.0")
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 03 15:06:05 UTC 2025
    - 66.8K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        @Nonnull
        default Map<String, String> getEffectiveProperties() {
            return getEffectiveProperties(null);
        }
    
        /**
         * Each invocation computes a new map of effective properties. To be used in interpolation.
         * <p>
         * Effective properties are computed from system, user and optionally project properties, layered with
         * defined precedence onto each other to achieve proper precedence. Precedence is defined as:
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

                place during the execution of a plugin. This field must be managed
                by the generated parser and formatter classes in order to allow it
                to survive model interpolation.
              </description>
              <type>String</type>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
                <version>4.0.0+</version>
                <code>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

    /**
     * The concern of the project is provide runtime values based on the model.
     * <p>
     * The values in the model remain untouched but during the process of building a project notions like inheritance and
     * interpolation can be added. This allows to have an entity which is useful in a runtime while preserving the model so
     * that it can be marshalled and unmarshalled without being tainted by runtime requirements.
     * </p>
     * <p>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

                mayOverrideDirectorySystemProperty(context, "user.home", result);
                return result;
            }
        }
    
        /**
         * This method is needed to "align" values used later on for interpolations and path calculations.
         * We enforce "canonical" paths, so IF key and canonical path value disagree, let override it.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
Back to top