Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for repo1 (0.02 sec)

  1. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java

            String log = logs.get("eu.maveniverse.maven.plugins:toolbox:" + Environment.TOOLBOX_VERSION + ":dump");
            assertTrue(log.contains("https://repo1.maven.org/maven2"), log);
            assertFalse(log.contains("https://repo.maven.apache.org/maven2"), log);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 21 12:17:55 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  2. deps.xml

    	<property name="kopf.branch" value="main" />
    
    	<!-- Maven Repository -->
    	<property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" />
    	<property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" />
    
    	<target name="install.jars">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${webinf.dir}/lib" />
    		<mkdir dir="${webinf.dir}/lib" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 08:57:53 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. plugin.xml

    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    			<param name="plugin.name.prefix" value="opensearch-" />
    			<param name="plugin.name" value="configsync" />
    			<param name="plugin.version" value="3.4.0" />
    			<param name="plugin.zip.version" value="3.4.0" />
    		</antcall>
    		<!-- minhash -->
    		<antcall target="install.plugin">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 18 09:50:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  4. README.md

    ```xml
    <dependency>
      <groupId>org.codelibs</groupId>
      <artifactId>curl4j</artifactId>
      <version>x.y.z</version>
    </dependency>
    ```
    
    See [Maven Central](https://repo1.maven.org/maven2/org/codelibs/curl4j/) for available versions.
    
    ### Gradle
    
    ```groovy
    implementation 'org.codelibs:curl4j:x.y.z'
    ```
    
    ## Quick Start
    
    ### Synchronous request
    
    ```java
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  5. .github/workflows/topic-repos.yml

    name: Update Topic Repos
    
    on:
      schedule:
        - cron: "0 12 1 * *"
      workflow_dispatch:
    
    env:
      UV_SYSTEM_PYTHON: 1
    
    jobs:
      topic-repos:
        if: github.repository_owner == 'fastapi'
        runs-on: ubuntu-latest
        permissions:
          contents: write
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Nov 21 13:03:21 UTC 2025
    - 1021 bytes
    - Viewed (0)
  6. scripts/topic_repos.py

        r = g.get_repo(settings.github_repository)
        repos = g.search_repositories(query="topic:fastapi")
        repos_list = list(repos)
        final_repos: list[Repo] = []
        for repo in repos_list[:100]:
            if repo.full_name == settings.github_repository:
                continue
            final_repos.append(
                Repo(
                    name=repo.name,
                    html_url=repo.html_url,
                    stars=repo.stargazers_count,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 12:34:01 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  7. .pre-commit-config.yaml

    # See https://pre-commit.com/hooks.html for more hooks
    repos:
      - repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v6.0.0
        hooks:
          - id: check-added-large-files
            args: ['--maxkb=750']
          - id: check-toml
          - id: check-yaml
            args:
            - --unsafe
          - id: end-of-file-fixer
          - id: trailing-whitespace
    
      - repo: local
        hooks:
          - id: local-ruff-check
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 11:36:58 UTC 2025
    - 1.8K bytes
    - Viewed (1)
  8. module.xml

    	<property name="target.dir" value="${basedir}/target/modules" />
    
    	<!-- Maven Repository -->
    	<property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" />
    	<property name="maven.release.repo.url" value="https://maven.codelibs.org" />
    	<property name="opensearch.version" value="3.4.0" />
    
    	<target name="install.modules">
    		<mkdir dir="${target.dir}" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 18 09:50:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                            ArtifactRepository repo = MavenRepositorySystem.buildArtifactRepository(
                                    new org.apache.maven.model.DeploymentRepository(r));
                            repositorySystem.injectProxy(request.getRepositorySession(), List.of(repo));
                            repositorySystem.injectAuthentication(request.getRepositorySession(), List.of(repo));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  10. impl/maven-core/src/test/java/org/apache/maven/project/RepositoryLeakageTest.java

                        .anyMatch(repo -> "child1-repo".equals(repo.getId()));
                assertTrue(child1HasOwnRepo, "Child1 should have its own repository");
    
                // Verify that child2 has its own repository
                boolean child2HasOwnRepo = child2Project.getRemoteArtifactRepositories().stream()
                        .anyMatch(repo -> "child2-repo".equals(repo.getId()));
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top