Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 456 for moduleA (0.09 sec)

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

                    }
                }
            """
            when:
            succeeds 'publish'
    
            then:
            def module = ivyRepo.module('org.gradle.test', 'root', '1.0')
            module.assertPublished()
            def module2 = ivyRepo2.module('org.gradle.test', 'root', '1.0')
            module2.assertPublished()
        }
    
        def "can publish custom PublishArtifact"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

            }
    
            void addChecksum(HttpModule module, String algo, String type = "jar", String ext = "jar", String origin = null, String reason = null) {
                def checksum = getChecksum(module, algo, type)
                doAddChecksum(module.group, module.module, module.version, type, ext, algo, checksum, origin, reason)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskIncrementalJavaCompilationIntegrationTest.groovy

            // We recompile all module-info.java also for unrelated modules, but we don't recompile unrelated classes
            impl.recompiledFqn("my.module.first.b.B", "my.module.second.c.C", "my.module.first.module-info", "my.module.second.module-info", "my.module.unrelated.module-info")
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "recompiles when upstream module-info changes"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesProcessingIntegTest.groovy

        // only test one combination
        @RequiredFeature(feature=GradleMetadataResolveRunner.REPOSITORY_TYPE, value="ivy")
        def "maven module is not affected by rule requiring ivy module descriptor input"() {
            def mavenModule = mavenRepo.module("org.utils", "api", "1.1").publishWithChangedContent()
    
            buildFile << """
                configurations { conf }
                repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/modfile.go

    // It also returns the modroot of the module providing the replacement if
    // one was found.
    func resolveReplacement(m module.Version) module.Version {
    	if r := Replacement(m); r.Path != "" {
    		return r
    	}
    	return m
    }
    
    func toReplaceMap(replacements []*modfile.Replace) map[module.Version]module.Version {
    	replaceMap := make(map[module.Version]module.Version, len(replacements))
    	for _, r := range replacements {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/repo.go

    // In this example, "rsc.io/qr" is both a module path and an import path.
    // But "rsc.io/qr/gf256" is only an import path, not a module path:
    // it names an importable package, but not a module.
    //
    // As a special case to incorporate code written before modules were
    // introduced, if a path p resolves using the pre-module "go get" lookup
    // to the root of a source code repository without a go.mod file,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

                conventionPluginBuilder.create(workingDir).generate();
    
                for (MavenProject module : modules(allProjects, false)) {
                    String id = module.getArtifactId();
                    List<Dependency> moduleDependencies = dependencies.get(id);
                    boolean warPack = module.getPackaging().equals("war");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

                    }
                }
            """
            when:
            succeeds 'publish'
    
            then:
            def module = mavenRepo.module('org.gradle.test', 'root', '1.0')
            module.assertPublished()
            def module2 = mavenRepo2.module('org.gradle.test', 'root', '1.0')
            module2.assertPublished()
        }
    
        def "can publish custom PublishArtifact"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    module('org:bar:1.0') {
                        edge('org:baz:1.0', 'org:baz:2.0').byConflictResolution('between versions 2.0 and 1.0')
                        module('org:foo:1.0') {
                            module('org:baz:2.0')
                        }
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/edit.go

    }
    
    type replaceJSON struct {
    	Old module.Version
    	New module.Version
    }
    
    type retractJSON struct {
    	Low       string `json:",omitempty"`
    	High      string `json:",omitempty"`
    	Rationale string `json:",omitempty"`
    }
    
    // editPrintJSON prints the -json output.
    func editPrintJSON(modFile *modfile.File) {
    	var f fileJSON
    	if modFile.Module != nil {
    		f.Module = editModuleJSON{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top