Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Updated (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java

            // second try, refetch all (possibly outdated) metadata that wasn't updated in the first attempt
    
            if (!request.getRepositorySession().isOffline() && !requests.isEmpty()) {
                DefaultRepositorySystemSession session = new DefaultRepositorySystemSession(request.getRepositorySession());
                session.setUpdatePolicy(RepositoryPolicy.UPDATE_POLICY_ALWAYS);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  2. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <identifier>true</identifier>
            </field>
            <field>
              <name>updated</name>
              <version>1.1.0+</version>
              <type>String</type>
              <description>The timestamp when this version information was last updated. The timestamp is expressed using UTC in the format yyyyMMddHHmmss.</description>
              <identifier>true</identifier>
            </field>
    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)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

            /* 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) {
                fireEvent(ResolutionListener.UPDATE_SCOPE, listeners, nearest, farthestArtifact);
    
    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)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                        }
                    } else {
                        update = updateCheckManager.isUpdateRequired(metadata, repository, file);
                    }
    
                    if (update) {
                        getLogger().info(metadata.getKey() + ": checking for updates from " + repository.getId());
                        try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                    RepositorySystem.DEFAULT_LOCAL_REPO_ID,
                    true,
                    ArtifactRepositoryPolicy.UPDATE_POLICY_ALWAYS,
                    true,
                    ArtifactRepositoryPolicy.UPDATE_POLICY_ALWAYS,
                    ArtifactRepositoryPolicy.CHECKSUM_POLICY_IGNORE);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

                        boolean snapshot = pomArtifact.isSnapshot();
                        for (ArtifactRepository repository : remoteRepositories) {
                            ArtifactRepositoryPolicy policy =
                                    snapshot ? repository.getSnapshots() : repository.getReleases();
                            if (ArtifactRepositoryPolicy.UPDATE_POLICY_ALWAYS.equals(policy.getUpdatePolicy())) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

                                    + "plugin(s) that have goals not marked as thread-safe to support parallel execution.",
                            "While this /may/ work fine, please look for plugin updates and/or "
                                    + "request plugins be made thread-safe.",
                            "If reporting an issue, report it against the plugin in question, not against Apache Maven.")) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

      <url>http://maven.apache.org/</url>
      <inceptionYear>2001</inceptionYear>
      <properties>
        <classWorldsVersion>1.3</classWorldsVersion>
        <commonsCliVersion>1.0</commonsCliVersion>
        <!--
    
        Do not update this, Doxia will be decoupled completely from 3.x and someone can
        create a rendering engine for it if they like when the release stabilizes. JVZ
    
        -->
        <doxiaVersion>1.0-alpha-9</doxiaVersion>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Sep 11 08:52:20 GMT 2021
    - 22.4K bytes
    - Viewed (0)
  9. maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

      <url>http://maven.apache.org/</url>
      <inceptionYear>2001</inceptionYear>
      <properties>
        <classWorldsVersion>1.3</classWorldsVersion>
        <commonsCliVersion>1.0</commonsCliVersion>
        <!--
    
        Do not update this, Doxia will be decoupled completely from 3.x and someone can
        create a rendering engine for it if they like when the release stabilizes. JVZ
    
        -->
        <doxiaVersion>1.0-alpha-9</doxiaVersion>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Aug 03 09:29:10 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

                sb.append(LS).append("snapshots: [enabled => ").append(snapshots.isEnabled());
                sb.append(", update => ").append(snapshots.getUpdatePolicy()).append(']');
            }
    
            if (releases != null) {
                sb.append(LS).append("releases: [enabled => ").append(releases.isEnabled());
                sb.append(", update => ").append(releases.getUpdatePolicy()).append(']');
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
Back to top