Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Krycho (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/repository/RepositoryCache.java

     * for exclusive consumption by the repository system and is opaque to the cache implementation.
     *
     */
    @Deprecated
    //
    // Used by Tycho and will break users and force them to upgrade to Maven 3.1 so we should really leave
    // this here, possibly indefinitely.
    //
    public interface RepositoryCache {
    
        /**
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

        }
    
        public List<Proxy> getProxies() {
            if (proxies == null) {
                proxies = new ArrayList<>();
            }
    
            return proxies;
        }
    
        //
        // Used by Tycho and will break users and force them to upgrade to Maven 3.1 so we should really leave
        // this here, possibly indefinitely.
        //
        public ArtifactResolutionRequest setCache(RepositoryCache cache) {
            return this;
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

                    .build());
        }
    
        @Deprecated
        public List<MavenProject> getSortedProjects() {
            return getProjects();
        }
    
        @Deprecated
        //
        // Used by Tycho and will break users and force them to upgrade to Maven 3.1 so we should really leave
        // this here, possibly indefinitely.
        //
        public RepositoryCache getRepositoryCache() {
            return null;
        }
    
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
Back to top