Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Repository (0.19 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

            policy.setUpdatePolicy("always");
    
            Repository repository = new Repository();
            repository.setId(RepositorySystem.DEFAULT_REMOTE_REPO_ID);
            repository.setUrl("file://" + repoDir.toURI().getPath());
            repository.setReleases(policy);
            repository.setSnapshots(policy);
    
            return Arrays.asList(repositorySystem.buildArtifactRepository(repository));
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            } else {
                // TODO
                throw new UnsupportedOperationException("Not implemented yet");
            }
        }
    
        @Override
        public org.eclipse.aether.repository.LocalRepository toRepository(LocalRepository repository) {
            if (repository instanceof DefaultLocalRepository) {
                return ((DefaultLocalRepository) repository).getRepository();
            } else {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    }
                }
    
                for (Repository repository : m.getRepositories()) {
                    validate20EffectiveRepository(problems, repository, "repositories.repository.", request);
                }
    
                for (Repository repository : m.getPluginRepositories()) {
                    validate20EffectiveRepository(problems, repository, "pluginRepositories.pluginRepository.", request);
                }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/apache/1/apache-1.pom

        <repository>
          <id>apache.releases</id>
          <name>Apache Release Distribution Repository</name>
          <url>scp://minotaur.apache.org/www/www.apache.org/dist/maven-repository</url>
        </repository>
        <snapshotRepository>
          <id>apache.snapshots</id>
          <name>Apache Development Snapshot Repository</name>
          <url>scp://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
        </snapshotRepository>
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultLocalRepositoryManager.java

        }
    
        private org.eclipse.aether.repository.LocalRepositoryManager getManager(
                InternalSession session, LocalRepository local) {
            org.eclipse.aether.repository.LocalRepository repository = session.toRepository(local);
            if ("enhanced".equals(repository.getContentType())) {
                repository = new org.eclipse.aether.repository.LocalRepository(repository.getBasePath(), "");
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  6. .github/workflows/scorecard.yml

              results_format: sarif
              # (Optional) "write" PAT token. Uncomment the `repo_token` line below if:
              # - you want to enable the Branch-Protection check on a *public* repository, or
              # - you are installing Scorecard on a *private* repository
              # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat.
              # repo_token: ${{ secrets.SCORECARD_TOKEN }}
    
    Others
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 29 23:37:56 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultLocalRepository.java

        private final @Nonnull org.eclipse.aether.repository.LocalRepository repository;
    
        public DefaultLocalRepository(@Nonnull org.eclipse.aether.repository.LocalRepository repository) {
            this.repository = nonNull(repository, "repository");
        }
    
        @Nonnull
        public org.eclipse.aether.repository.LocalRepository getRepository() {
            return repository;
        }
    
        @Nonnull
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultRepositoryFactory.java

                            repository.getId(), repository.getLayout(), repository.getUrl())
                    .setReleasePolicy(buildRepositoryPolicy(repository.getReleases()))
                    .setSnapshotPolicy(buildRepositoryPolicy(repository.getSnapshots()))
                    .build());
        }
    
        @Override
        public List<RemoteRepository> aggregate(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 4.1K bytes
    - Viewed (0)
Back to top