Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Nexus (0.05 sec)

  1. platforms/software/resources-http/src/test/resources/org/gradle/internal/resource/transport/http/nexus_dirlisting.html

        Sonatype Nexus (TM) Open Source Version
        Copyright (c) 2007-2012 Sonatype, Inc.
        All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
    
        This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,
        which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. maven-core/plugin-manager.txt

     *
     * - nexus - the plugin class - UI to contribute - what JS to hook into the UI - what resources to
     * load into the UI - having packed or unpacked plugins, and positioning resources if necessary -
     * maven can work out of the classloader, nexus plugins probably couldn't give the js and image
     * resources
     *
     * We need to look at Maven, and Nexus as use cases and figure out what each of them needs to be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. android/pom.xml

      </build>
      <distributionManagement>
        <snapshotRepository>
          <id>sonatype-nexus-snapshots</id>
          <name>Sonatype Nexus Snapshots</name>
          <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
          <id>sonatype-nexus-staging</id>
          <name>Nexus Release Repository</name>
          <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. pom.xml

      </build>
      <distributionManagement>
        <snapshotRepository>
          <id>sonatype-nexus-snapshots</id>
          <name>Sonatype Nexus Snapshots</name>
          <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
          <id>sonatype-nexus-staging</id>
          <name>Nexus Release Repository</name>
          <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. .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)
  8. 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)
  9. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

            <snapshotRepository>
                <id>junit-snapshot-repo</id>
                <name>Nexus Snapshot Repository</name>
                <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
            </snapshotRepository>
            <repository>
                <id>junit-releases-repo</id>
                <name>Nexus Release Repository</name>
                <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

                    continue;
                }
    
                proxy = proxy.clone();
    
                request.addProxy(proxy);
            }
    
            // <mirrors>
            //   <mirror>
            //     <id>nexus</id>
            //     <mirrorOf>*</mirrorOf>
            //     <url>http://repository.sonatype.org/content/groups/public</url>
            //   </mirror>
            // </mirrors>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top