Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for urgent (0.32 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                            .getPath()
                            .startsWith(session.getLocalRepository().getBasedir().getPath());
        }
    
        /**
         * Unravels trace tree (going upwards from current node), looking for {@link CollectStepData} trace data.
         * This method may return {@code null} if no collect step data found in passed trace data or it's parents.
         * <p>
         * Visible for testing.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Returns the current maven version
         * @return the maven version, never {@code null}
         */
        @Nonnull
        Version getMavenVersion();
    
        int getDegreeOfConcurrency();
    
        @Nonnull
        Instant getStartTime();
    
        /**
         * Gets the directory of the topmost project being built, usually the current directory or the
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  3. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java

            VersionRange range1 = VersionRange.createFromVersionSpec("1.0");
            VersionRange range2 = VersionRange.createFromVersionSpec("1.1");
            VersionRange mergedRange = range1.restrict(range2);
            // TODO current policy is to retain the original version - is this correct, do we need strategies or is that
            // handled elsewhere?
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 44.3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                updateScope = true;
            }
    
            /* current POM rules all, if nearest is in current pom, do not update its artifactScope */
            if ((nearest.getDepth() < 2) && updateScope) {
                updateScope = false;
    
                fireEvent(ResolutionListener.UPDATE_SCOPE_CURRENT_POM, listeners, nearest, farthestArtifact);
            }
    
            if (updateScope) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 36.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

                // the default must become the current project of the thread that clones this
                MavenProject current = getCurrentProject();
                // we replace the thread local of the clone to prevent write through and enforce the new default value
                clone.currentProject = ThreadLocal.withInitial(() -> current);
                return clone;
            } catch (CloneNotSupportedException e) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

         * Denotes validation as performed by Maven 4.0. This validation level is meant for new projects.
         */
        int VALIDATION_LEVEL_MAVEN_4_0 = 40;
    
        /**
         * Denotes strict validation as recommended by the current Maven version.
         */
        int VALIDATION_LEVEL_STRICT = VALIDATION_LEVEL_MAVEN_4_0;
    
        @Nonnull
        Session getSession();
    
        @Nonnull
        ModelSource getSource();
    
        int getValidationLevel();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

         */
        @Test
        void testMojoWhereInternallyStatedDependencyIsOverriddenByProject() throws Exception {}
    
        /**
         * The case where you have a plugin in the current build that you want to be used on projects in
         * the current build.
         */
        @Test
        void testMojoThatIsPresentInTheCurrentBuild() throws Exception {}
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         */
        PROCESSOR_MODULES("--processor-module-path"),
    
        /**
         * The path identified by the Java {@code -agentpath} option.
         */
        AGENT("-agentpath"),
    
        /**
         * The path identified by the Javadoc {@code -doclet} option.
         */
        DOCLET("-doclet"),
    
        /**
         * The path identified by the Javadoc {@code -tagletpath} option.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                if (userAgent == null) {
                    Properties headers = new Properties();
    
                    headers.put(
                            "User-Agent",
                            ConfigUtils.getString(
                                    legacySupport.getRepositorySession(), "Maven", ConfigurationProperties.USER_AGENT));
                    try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 29.9K bytes
    - Viewed (0)
  10. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <name>snapshot</name>
              <version>1.0.0+</version>
              <association>
                <type>Snapshot</type>
              </association>
              <description>The current snapshot data in use for this version ("groupId/artifactId/version" only)</description>
            </field>
            <field>
              <name>snapshotVersions</name>
              <version>1.1.0+</version>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 15.8K bytes
    - Viewed (0)
Back to top