Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for repository (0.22 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                        repository.getId(),
                        repository.getUrl(),
                        repository.getLayout(),
                        repository.getSnapshots(),
                        repository.getReleases());
    
                repository.setMirroredRepositories(Collections.singletonList(original));
    
                repository.setId(mirror.getId());
                repository.setUrl(mirror.getUrl());
    
    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)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

    import org.eclipse.aether.repository.LocalArtifactResult;
    import org.eclipse.aether.repository.LocalMetadataRegistration;
    import org.eclipse.aether.repository.LocalMetadataRequest;
    import org.eclipse.aether.repository.LocalMetadataResult;
    import org.eclipse.aether.repository.LocalRepository;
    import org.eclipse.aether.repository.LocalRepositoryManager;
    import org.eclipse.aether.repository.RemoteRepository;
    
    /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

        private static int repositoryHashCode(ArtifactRepository repository) {
            int result = 17;
            result = 31 * result + (repository.getId() != null ? repository.getId().hashCode() : 0);
            return result;
        }
    
        private static int repositoriesHashCode(List<ArtifactRepository> repositories) {
            int result = 17;
            for (ArtifactRepository repository : repositories) {
    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)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param repository information needed for establishing connections with remote repository
         * @return remote repository that can be used to download or upload artifacts
         *
         * @see org.apache.maven.api.services.RepositoryFactory#createRemote(Repository)
         */
        @Nonnull
        RemoteRepository createRemoteRepository(@Nonnull Repository repository);
    
        /**
    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)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    2.0-rc1 attach-sources jar true maven-surefire-plugin 2.0-beta-2-SNAPSHOT false snapshots Maven Central Development Repository http://snapshots.maven.codehaus.org/maven2 false central Maven Repository Switchboard http://www.ibiblio.org/maven2 false snapshots Maven Central Plugins Development Repository http://snapshots.maven.codehaus.org/maven2 false central Maven Plugin Repository http://www.ibiblio.org/maven2 junit junit 3.8.1 test target/site org.codehaus.plexus plexus-container-default 1.0-alpha-8...
    Archive
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    classworlds.realm.ClassRealm); public abstract void addComponentDescript(component.repository.ComponentDescriptor) throws component.repository.exception.ComponentRepositoryE; public abstract void release(Object) throws component.repository.exception.ComponentLifecycleEx; public abstract void releaseAll(java.util.Map) throws component.repository.exception.ComponentLifecycleEx; public abstract void releaseAll(java.util.List) throws component.repository.exception.ComponentLifecycleEx; public abstract boolean hasComponent(String);...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 35.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/ReactorReader.java

        @Inject
        ReactorReader(MavenSession session) {
            this.session = session;
            this.repository = new WorkspaceRepository("reactor", null);
        }
    
        //
        // Public API
        //
    
        public WorkspaceRepository getRepository() {
            return repository;
        }
    
        public File findArtifact(Artifact artifact) {
            MavenProject project = getProject(artifact);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

         * to process and store tracking information ONLY into local repository, not to any other place. This method
         * filters out currently built artifacts, as events are fired for them as well, but their resolved artifact
         * file would point to checked out source-tree, not the local repository.
         * <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)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    component.repository.exception.ComponentLookupExcep; public abstract java.util.Map lookupMap(String, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public abstract java.util.Map lookupMap(Class) throws component.repository.exception.ComponentLookupExcep; public abstract java.util.Map lookupMap(Class, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public abstract component.repository.ComponentDescriptor getComponentDescript(String);...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 32.4K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

    import org.apache.maven.artifact.factory.ArtifactFactory;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.artifact.repository.ArtifactRepositoryPolicy;
    import org.apache.maven.artifact.repository.MavenArtifactRepository;
    import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
    import org.apache.maven.artifact.repository.layout.DefaultRepositoryLayout;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
Back to top