Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,758 for aModule (0.31 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/ResolutionOverrideIntegrationTest.groovy

            module.pom.expectGet()
            module.artifact.expectHead()
            module.artifact.sha1.expectGet()
            module.artifact.expectGet()
    
            and:
            executer.withArguments(arg)
            succeeds 'retrieve'
    
            then:
            file('libs/projectA-1.2.jar').assertIsCopyOf(module.artifactFile).assertHasChangedSince(snapshot)
    
            where:
            arg << refreshDependenciesArgs
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/templates/root-project/checkstyle.xml

    <!DOCTYPE module PUBLIC
            "-//Puppy Crawl//DTD Check Configuration 1.2//EN"
            "http://www.puppycrawl.com/dtds/configuration_1_2.dtd">
    <module name="Checker">
        <module name="TreeWalker">
            <module name="ClassTypeParameterName"/>
            <module name="ConstantName"/>
            <module name="LocalFinalVariableName"/>
            <module name="LocalVariableName"/>
            <module name="MemberName"/>
            <module name="MethodName"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 856 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolvedComponentResultTest.groovy

            given:
            def module = newModule("a", "c", "1")
            def dependency  = newDependency("a", "x", "1")
            def dependent   = newDependency("a", "x2", "1")
    
            when:
            module.addDependency(dependency)
            module.addDependent(dependent)
    
            then:
            module.dependencies == [dependency] as Set
            module.dependents   == [dependent] as Set
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. api/pom.xml

      <modules>
        <module>maven-api-meta</module>
        <module>maven-api-di</module>
        <module>maven-api-xml</module>
        <module>maven-api-model</module>
        <module>maven-api-plugin</module>
        <module>maven-api-settings</module>
        <module>maven-api-toolchain</module>
        <module>maven-api-metadata</module>
        <module>maven-api-core</module>
        <module>maven-api-spi</module>
      </modules>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleTest.groovy

                new ModuleDependency('someModule', null)]
    
        Module module = new Module(xmlTransformer, pathFactory)
    
        def loadFromReader() {
            when:
            module.load(customModuleReader)
    
            then:
            module.jdkName == "1.6"
            module.sourceFolders == customSourceFolders
            module.testSourceFolders == customTestSourceFolders
            module.resourceFolders == customResourceFolders
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsRepoResolveIntegrationTest.groovy

            module.pom.expectMetadataRetrieve()
            module.pom.sha1.expectDownload()
            module.artifact.expectMetadataRetrieve()
            module.artifact.sha1.expectDownload()
    
            when:
            using m2
    
            then:
            succeeds 'retrieve'
    
            and:
            localModule.artifactFile.assertIsCopyOf(module.artifactFile)
            localModule.pomFile.assertIsCopyOf(module.pomFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsSnapshotRepoIntegrationTest.groovy

        String artifactVersion = "1.45-SNAPSHOT"
        MavenGcsModule module
    
        def setup() {
            module = getMavenGcsRepo().module("org.gradle", "test", artifactVersion)
        }
    
        def "resolves a maven snapshot module stored in Gcs"() {
            setup:
            module.publish()
    
            buildFile << mavenGcsRepoDsl()
            buildFile << """
    configurations { compile }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpsIntegTest.groovy

            failure.assertHasCause("Could not write to resource '${module.jar.uri}'")
        }
    
        def expectPublication() {
            module.jar.expectPut()
            module.jar.sha1.expectPut()
            module.jar.sha256.expectPut()
            module.jar.sha512.expectPut()
            module.ivy.expectPut()
            module.ivy.sha1.expectPut()
            module.ivy.sha256.expectPut()
            module.ivy.sha512.expectPut()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyModule.java

         *  organisation
         *  module
         *  revision
         *  revConstraint
         *  conf
         *  exclusions - list of maps: [[group: ?, module: ?], ...]
         */
        IvyModule dependsOn(Map<String, ?> attributes);
    
        IvyModule dependsOn(Module target);
    
        IvyModule dependsOn(Map<String, ?> attributes, Module target);
    
        IvyModule dependencyConstraint(Module module);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/maven/MavenS3RepoResolveIntegrationTest.groovy

    task retrieve(type: Sync) {
        from configurations.compile
        into 'libs'
    }
    """
            and:
            module.pom.expectMetadataRetrieve()
            module.pom.sha1.expectDownload()
            module.pom.expectDownload()
            module.artifact.expectMetadataRetrieve()
            module.artifact.sha1.expectDownload()
            module.artifact.expectDownload()
    
            when:
            using m2
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top