Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for Sall (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                // and only for plain old jars. Not war files, not ear files, not anything else.
                return determineBuildOutputDirectoryForArtifact(project, artifact);
            }
    
            // The fall-through indicates that the artifact cannot be found;
            // for instance if package produced nothing or classifier problems.
            return null;
        }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

        /**
         * OS family that can be tested for. {@value}
         */
        private static final String FAMILY_OS400 = "os/400";
    
        /**
         * OpenJDK is reported to call MacOS X "Darwin"
         *
         * @see <a href="https://issues.apache.org/bugzilla/show_bug.cgi?id=44889">bugzilla issue</a>
         * @see <a href="https://issues.apache.org/jira/browse/HADOOP-3318">HADOOP-3318</a>
         */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    } else {
                        /*
                         * NOTE: Other configurators like the map-oriented one don't call into the listener, so do it the
                         * hard way.
                         */
                        validateParameters(mojoDescriptor, configuration, expressionEvaluator);
                    }
                }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-interpolation-build/pom.xml

          <build>
            <plugins>
              <plugin>
                <artifactId>plugin-all-profiles</artifactId>
                <executions>
                  <execution>
                    <id>Active all ||${project.basedir}||</id>
                    <configuration>
                      <plugin-all-profiles-in>Active all ||${project.basedir}||</plugin-all-profiles-in>
                    </configuration>
                  </execution>
                </executions>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Apr 12 10:26:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

                    value = project.getProperties().getProperty(expression);
                }
            }
    
            if (value instanceof String) {
                // TODO without #, this could just be an evaluate call...
    
                String val = (String) value;
    
                int exprStartDelimiter = val.indexOf("${");
    
                if (exprStartDelimiter >= 0) {
                    if (exprStartDelimiter > 0) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue Oct 17 17:55:08 GMT 2023
    - 16.7K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/shared/run.cmd

    if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat"
    if exist "%USERPROFILE%\mavenrc_post.cmd" echo Warning: The mavenrc_post.cmd script is deprecated and will be removed in a future version. >&2
    if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd"
    :skipRcPost
    
    @REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
    Batch File
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sat Mar 05 22:52:54 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/inheritance.apt

     of models you may specify:
    
     all of the models that you specify are collected to produce a lineage and then the super model is place at
     the top of that lineage to provide default values.
    
     The super model is where we place all the values which we believe to be standard, values that can be shared and
     utilized across all your Maven projects.
    
    +-----+
     m0 <- m1 <- m2
    +-----+
    
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 3.5K bytes
    - Viewed (0)
  8. maven-core/src/main/mdo/extension.mdo

                Other values define only the prefix of classes/resources being exposed. Their binary name must be equal to the prefix or starting with the prefix (followed by "." or "$").
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            checkBuildPluginWithArtifactId(
                    activeProfilePlugins,
                    "plugin-all-profiles",
                    "Active all ||${project.basedir}||",
                    "<plugin-all-profiles-in>Active all ||${project.basedir}||</plugin-all-profiles-in>");
    
            checkBuildPluginWithArtifactId(
                    activeProfilePlugins,
                    "only-active-profile",
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

     * </p>
     * <p>
     * With changes during 3.2.2 release MavenProject is closer to being immutable after construction with the removal of
     * all components from this class, and the upfront construction taken care of entirely by the {@link ProjectBuilder}.
     * There is still the issue of having to run the lifecycle in order to find all the compile source roots and resource
     * directories but I hope to take care of this during the Maven 4.0 release (jvz).
     * </p>
     */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
Back to top