Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for Value (0.03 sec)

  1. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

         * If not explicitly set, this value will be detected during parsing.
         *
         * @return the current working directory path, or null if not set
         */
        @Nullable
        Path cwd();
    
        /**
         * Returns the Maven home directory.
         * If not explicitly set, this value will be detected during parsing.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 12:23:10 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java

                        value = getPropertyValue(value, tokenizer.nextPropertyName());
                        break;
                    default:
                        // could not parse expression
                        return null;
                }
            }
    
            if (value instanceof Optional) {
                value = ((Optional<?>) value).orElse(null);
            }
            return value;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/site/apt/index.apt

      <<<project.scm.url>>> and <<<project.distributionManagement.site.url>>>) have a special inheritance handling:
    
      ** if not configured in current model, the inherited value is the parent's one with current artifact id appended,
    
      ** since Maven 3.5.0, if <<<project.directory>>> POM property value is defined, it is used instead of artifact id:
      this permits default inheritance calculations when module directory name is not equal to artifact id. Notice that this
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. compat/maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            flushAttributes();
            builder.append(value);
            return this;
        }
    
        public Ansi a(double value) {
            flushAttributes();
            builder.append(value);
            return this;
        }
    
        public Ansi a(float value) {
            flushAttributes();
            builder.append(value);
            return this;
        }
    
        public Ansi a(int value) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            assertViolations(result, 0, 2, 0);
    
            assertEquals(
                    "'groupId' with value 'o/a/m' does not match a valid coordinate id pattern.",
                    result.getErrors().get(0));
    
            assertEquals(
                    "'artifactId' with value 'm$-do$' does not match a valid coordinate id pattern.",
                    result.getErrors().get(1));
        }
    
        @Test
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

         *
         * @param value The string value
         * @param toType The target type
         * @return Converted instance of the target type
         */
        private Object convertText(final String value, final TypeLiteral<?> toType) {
            final String text = value.trim();
    
            final Class<?> rawType = toType.getRawType();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java

         * <p>Then the returned value is {@code groupId:artifactId} when there is a name clash and
         * {@code :artifactId} if there is no conflict.
         * This method is made package-private for testing purposes.
         *
         * @param mavenProjects Maven projects which are part of build execution.
         * @param firstFailedProject The first project which has failed.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         */
        @Nonnull
        SessionData getData();
    
        /**
         * Returns immutable user properties to use for interpolation. The user properties have been configured directly
         * by the user, e.g. via the {@code -Dkey=value} parameter on the command line.
         *
         * @return the user properties, never {@code null}
         */
        @Nonnull
        Map<String, String> getUserProperties();
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 16:43:07 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  9. compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java

        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * The one-based line number. The value will be non-positive if
         * unknown.
         */
        private int lineNumber = -1;
    
        /**
         * The one-based column number. The value will be non-positive
         * if unknown.
         */
        private int columnNumber = -1;
    
        /**
         * Field source.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/maven/conf/settings.xml

         |       anything, you could just leave off the <value/> inside the activation-property.
         |
        <profile>
          <id>env-dev</id>
    
          <activation>
            <property>
              <name>target-env</name>
              <value>dev</value>
            </property>
          </activation>
    
          <properties>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 15:53:41 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top