Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Nexus (0.04 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishChangingUrlIntegTest.groovy

        IvyFileRepository repo2 = new IvyFileRepository(file("repo2"))
        IvyModule repo2Module = repo2.module(org, moduleName, rev)
    
        // This documents observable behavior from the Nexus plugin
        @ToBeFixedForConfigurationCache(because = "changes to IvyArtifactRepository.getUrl are lost")
        def "can change URL to repository from provider"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

            "https://repo.maven.apache.org/maven2/junit/junit/"                     | "mavencentral"
            "http://localhost:8081/nexus/content/repositories/central/junit/junit/" | "nexus"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. .github/workflows/ci.yml

          - name: 'Set up JDK 21'
            uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
            with:
              java-version: 21
              distribution: 'zulu'
              server-id: sonatype-nexus-snapshots
              server-username: CI_DEPLOY_USERNAME
              server-password: CI_DEPLOY_PASSWORD
              cache: 'maven'
          - name: 'Publish'
            env:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResponseResource.java

            String sha1Header = response.getHeader("X-Checksum-Sha1");
            if (sha1Header != null) {
                return HashCode.fromString(sha1Header);
            }
    
            // Nexus uses sha1 etags, with a constant prefix
            // e.g {SHA1{b8ad5573a5e9eba7d48ed77a48ad098e3ec2590b}}
            if (etag != null && etag.startsWith("{SHA1{")) {
                String hash = etag.substring(6, etag.length() - 2);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top