Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for gav (0.1 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            pomReader.properties['package.type'] == packaging
    
            where:
            packaging << ['pom', 'jar', 'ejb', 'war', 'ear', 'rar', 'par']
        }
    
        @Issue("GRADLE-3299")
        def "can define GAV with reference to parent.GAV"() {
            when:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>\${parent.groupId}</groupId>
        <artifactId>\${parent.artifactId}</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/CacheResolveIntegrationTest.groovy

            when:
            server.resetExpectations()
            relocateCachesAndChangeGradleHome()
    
            then:
            succeeds('listJars')
        }
    
        def 'cannot write cache entries outside of GAV'() {
            given:
            def fakeDep = temporaryFolder.testDirectory.file('fake-repo/pwned.txt')
            fakeDep << """
    Hello world!
    """
            def hash = Hashing.sha1().hashFile(fakeDep).toString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependenciesExtensions.kt

    // The #module and #constraint methods here allow the usage of named arguments in Kotlin, even though the signature is overall the same as the Java method.
    
    
    /**
     * Creates a dependency based on the group, name and version (GAV) coordinates.
     *
     * @since 8.0
     */
    fun Dependencies.module(group: String?, name: String, version: String?): ExternalModuleDependency = module(group, name, version)
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 18:51:29 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    include::sample[dir="groovy",files="convention-plugins/build.gradle[tags=repositories-and-dependencies]"]
    ====
    
    * The dependency artifact coordinates (GAV) for a plugin can be different from the plugin id.
    * The Gradle Plugin Portal (`gradlePluginPortal()`) is added as a repository for plugin dependencies.
    * The plugin version is determined from the dependency version.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/README.adoc

    include::sample[dir="groovy",files="convention-plugins/build.gradle[tags=repositories-and-dependencies]"]
    ====
    
    * The dependency artifact coordinates (GAV) for a plugin can be different from the plugin id.
    * The Gradle Plugin Portal (`gradlePluginPortal()`) is added as a repository for plugin dependencies.
    * The plugin version is determined from the dependency version.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/multi-project-with-convention-plugins/README.adoc

    include::sample[dir="kotlin",files="buildSrc/build.gradle.kts[tags=repositories-and-dependencies]"]
    include::sample[dir="groovy",files="buildSrc/build.gradle[tags=repositories-and-dependencies]"]
    ====
    
    * The dependency artifact coordinates (GAV) for a plugin can be different from the plugin id.
    * The Gradle Plugin Portal (`gradlePluginPortal()`) is added as a repository for plugin dependencies.
    * The plugin version is determined from the dependency version.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParser.java

                    pomReader.setPomParent(parentPomReader);
    
                    // Current POM can derive version/artifactId from parent. Resolve GAV and substitute values
                    pomReader.resolveGAV();
                    groupId = pomReader.getGroupId();
                    artifactId = pomReader.getArtifactId();
                    version = pomReader.getVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

            'single GAV string'                 | 'platform'            | "platform('org.example.gradle:platform')"
            'module method'                     | 'platform'            | "platform(module('org.example.gradle', 'platform', null))"
            'referencing project.dependencies'  | 'platform'            | "project.dependencies.platform('org.example.gradle:platform')"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

            when:
            server.resetExpectations()
            and:
            run 'retrieve'
    
            then:
            file('libs/projectA-1.0.jar').assertHasNotChangedSince(snapshot)
        }
    
        def "can resolve with GAV containing #identifier characters"() {
            def value = identifier.safeForFileName().decorate("name")
    
            given:
            def projectB = mavenHttpRepo.module(value, value, value).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            static androidGradle = Versions.of(*AGP_VERSIONS.latestsPlusNightly)
    
            // https://search.maven.org/search?q=g:org.jetbrains.kotlin%20AND%20a:kotlin-project&core=gav
            // Update by running `./gradlew updateKotlinVersions`
            static kotlin = Versions.of(*KOTLIN_VERSIONS.latests)
    
            // https://plugins.gradle.org/plugin/org.gretty
            static gretty = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top