Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 332 for sublist (0.41 sec)

  1. .github/workflows/submit-github-dependency-graph.yml

    name: Submit Dependency Graph
    on:
      workflow_dispatch:
      push:
        branches:
          - master
    
    permissions: {}
    
    jobs:
      generate-and-submit:
        permissions:
          contents: write
        runs-on: ubuntu-latest
        steps:
        - uses: actions/checkout@v4
        - uses: actions/setup-java@v4
          with:
            distribution: temurin
            java-version: 11
        - name: Setup Gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            mavenRepo.module("org", "c", '1.0').publish()
            mavenRepo.module("org", "x", '1.0').publish()
            mavenRepo.module("org", "c", '2.0').dependsOn("org", "x", '1.0').publish()
            mavenRepo.module("org", "a").dependsOn("org", "c", "1.0").publish()
            mavenRepo.module("org", "b").dependsOn("org", "c", "2.0").publish()
            mavenRepo.module("org", "d").dependsOn("org", "x", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedArtifactOrderingIntegrationTest.groovy

            when:
            def modD = mavenRepo.module("org.test", "D").publish()
            def modC = mavenRepo.module("org.test", "C").dependsOn(modD).publish()
            def modB = mavenRepo.module("org.test", "B").dependsOn(modD).publish()
            def modA = mavenRepo.module("org.test", "A").dependsOn(modB).dependsOn(modC).publish()
    
            then:
            checkOrdered([modA, modB, modC, modD])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            mavenRepo.module("org", "leaf1").publish()
            mavenRepo.module("org", "leaf2").publish()
            mavenRepo.module("org", "leaf2", "1.5").publish()
            mavenRepo.module("org", "leaf2", "2.5").publish()
            mavenRepo.module("org", "leaf3").publish()
            mavenRepo.module("org", "leaf4").publish()
    
            mavenRepo.module("org", "middle1").dependsOnModules('leaf1', 'leaf2').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven
    
    import org.gradle.api.credentials.Credentials
    import org.gradle.api.credentials.PasswordCredentials
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.integtests.fixtures.publish.maven.AbstractMavenPublishIntegTest
    import org.gradle.internal.credentials.DefaultPasswordCredentials
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ParallelDownloadsIntegrationTest.groovy

            def m1 = mavenRepo.module('test', 'test1', '1.0').publish()
            def m2 = mavenRepo.module('test', 'test2', '1.0').publish()
            def m3 = mavenRepo.module('test', 'test3', '1.0').publish()
            def m4 = mavenRepo.module('test', 'test4', '1.0').publish()
    
            buildFile << """
                repositories {
                    maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

                    def dep = mavenRepo.module("thing", "lib2", "4.0").publish()
                    mavenRepo.module("thing", "lib1", "2.1").dependsOn(dep).publish()
                }
            }
    
            @Override
            void publishNewVersion(AbstractIntegrationSpec owner) {
                owner.with {
                    def dep = mavenRepo.module("thing", "lib2", "4.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/IvyServices.java

    import org.gradle.api.publish.ivy.internal.publisher.ContextualizingIvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.DependencyResolverIvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.IvyDuplicatePublicationTracker;
    import org.gradle.api.publish.ivy.internal.publisher.IvyPublisher;
    import org.gradle.api.publish.ivy.internal.publisher.ValidatingIvyPublisher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                leaf1 = module('org', 'leaf', '1.0').publish()
                leaf2 = module('org', 'leaf', '2.0').publish()
            }
    
            when:
            buildFile << """
                repositories {
                    maven { url = '${mavenHttpRepo.uri}' }
                }
    
                configurations {
                    compile {
                        resolutionStrategy.failOnVersionConflict()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/MavenPublishServices.java

    import org.gradle.api.internal.component.ComponentTypeRegistry;
    import org.gradle.api.publish.maven.internal.dependencies.MavenVersionRangeMapper;
    import org.gradle.api.publish.maven.internal.dependencies.VersionRangeMapper;
    import org.gradle.api.publish.maven.internal.publisher.MavenDuplicatePublicationTracker;
    import org.gradle.api.publish.maven.internal.publisher.MavenPublishers;
    import org.gradle.internal.service.Provides;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top