Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 205 for Repositories (0.06 seconds)

  1. pom.xml

    				</plugin>
    			</plugins>
    		</pluginManagement>
    	</build>
    	<repositories>
    		<repository>
    			<id>snapshots.central.sonatype.com</id>
    			<url>https://central.sonatype.com/repository/maven-snapshots</url>
    			<releases>
    				<enabled>false</enabled>
    			</releases>
    			<snapshots>
    				<enabled>true</enabled>
    			</snapshots>
    		</repository>
    	</repositories>
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sat Dec 20 06:34:36 GMT 2025
    - 2.8K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                        .build());
            }
            // only keep repositories other than 'central'
            builder.repositories(pruneRepositories(model.getRepositories()));
            builder.pluginRepositories(null);
            return builder;
        }
    
        private static List<Repository> pruneRepositories(List<Repository> repositories) {
            return repositories.stream()
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Nov 27 07:40:26 GMT 2025
    - 21.2K bytes
    - Click Count (0)
  3. compat/maven-settings-builder/src/test/java/org/apache/maven/settings/validation/DefaultSettingsValidatorTest.java

            assertContains(
                    problems.messages.get(1),
                    "'profiles.profile[default].repositories.repository.url' for local is missing");
            assertContains(
                    problems.messages.get(2),
                    "'profiles.profile[default].repositories.repository.id' must not contain any of these characters");
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 8.5K bytes
    - Click Count (0)
  4. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/repository-with-basedir-expression.xml

        <artifactId>parent</artifactId>
        <version>1</version>
      </parent>
    
      <groupId>org.apache.maven.validation</groupId>
      <artifactId>project</artifactId>
      <version>1.0.0-SNAPSHOT</version>
    
      <repositories>
        <repository>
          <id>repo</id>
          <url>file://${basedir}/target/remote-repo</url>
        </repository>
        <repository>
          <id>repo-project-basedir</id>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.7K bytes
    - Click Count (0)
  5. impl/maven-core/lifecycle-executor.txt

            <resources implementation="java.util.List">${project.resources}</resources>
            <repositories implementation="java.util.List">${project.repositories}</repositories>
            <remoteArtifactRepositories implementation="java.util.List">${project.remoteArtifactRepositories}</remoteArtifactRepositories>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 9.7K bytes
    - Click Count (0)
  6. impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

        public PluginDescriptor getPluginDescriptor(
                Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session)
                throws PluginResolutionException, PluginDescriptorParsingException, InvalidPluginDescriptorException {
            PluginDescriptorCache.Key cacheKey = pluginDescriptorCache.createKey(plugin, repositories, session);
    
            PluginDescriptor pluginDescriptor = pluginDescriptorCache.get(cacheKey, () -> {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Dec 09 16:35:21 GMT 2025
    - 46.4K bytes
    - Click Count (0)
  7. .github/workflows/scorecard.yml

              # repo_token: ${{ secrets.SCORECARD_TOKEN }}
    
              # Public repositories:
              #   - Publish results to OpenSSF REST API for easy access by consumers
              #   - Allows the repository to include the Scorecard badge.
              #   - See https://github.com/ossf/scorecard-action#publishing-results.
              # For private repositories:
              #   - `publish_results` will always be set to `false`, regardless
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Dec 01 19:32:55 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  8. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectBuilder.java

            try {
                List<ArtifactRepository> repositories = session.toArtifactRepositories(
                        request.getRepositories() != null ? request.getRepositories() : session.getRemoteRepositories());
                ProjectBuildingRequest req = new DefaultProjectBuildingRequest()
                        .setRepositorySession(session.getSession())
                        .setRemoteRepositories(repositories)
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Sep 13 09:44:11 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  9. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/MavenOptions.java

         */
        @Nonnull
        Optional<Boolean> strictArtifactDescriptorPolicy();
    
        /**
         * Indicates whether Maven should ignore transitive repositories.
         *
         * @return an {@link Optional} containing true if transitive repositories should be ignored, false if not, or empty if not specified
         */
        @Nonnull
        Optional<Boolean> ignoreTransitiveRepositories();
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 8K bytes
    - Click Count (0)
  10. docs/integrations/veeam/README.md

    ![Adding Object Storage to VBO Step 1](https://raw.githubusercontent.com/minio/minio/master/docs/integrations/veeam/screenshots/1_add_object_store.png)
    
    - Follow through the wizard as above for Veeam Backup and Replication as the steps are the same between both products
    
    - Under Backup Infrastructure -> Backup Repositories, right click and "Add Backup Repository"
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 5.5K bytes
    - Click Count (0)
Back to Top