Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for gav (0.05 sec)

  1. maven-core/src/main/java/org/apache/maven/project/ReactorModelPool.java

    class ReactorModelPool {
        private final Map<GAKey, Set<Model>> modelsByGa = new ConcurrentHashMap<>();
    
        private final Map<Path, Model> modelsByPath = new ConcurrentHashMap<>();
    
        /**
         * Get the model by its GAV or (since 4.0.0) by its GA if there is only one.
         *
         * @param groupId never {@code null}
         * @param artifactId never {@code null}
         * @param version can be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/LocalSnapshotMetadata.java

    import org.apache.maven.api.metadata.Snapshot;
    import org.apache.maven.api.metadata.SnapshotVersion;
    import org.apache.maven.api.metadata.Versioning;
    import org.eclipse.aether.artifact.Artifact;
    
    /**
     * Maven local GAV level metadata.
     */
    final class LocalSnapshotMetadata extends MavenMetadata {
    
        private final Collection<Artifact> artifacts = new ArrayList<>();
    
        LocalSnapshotMetadata(Artifact artifact, Date timestamp) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/RemoteSnapshotMetadata.java

    import org.apache.maven.artifact.repository.metadata.SnapshotVersion;
    import org.apache.maven.artifact.repository.metadata.Versioning;
    import org.eclipse.aether.artifact.Artifact;
    
    /**
     * Maven remote GAV level metadata.
     */
    final class RemoteSnapshotMetadata extends MavenSnapshotMetadata {
        public static final String DEFAULT_SNAPSHOT_TIMESTAMP_FORMAT = "yyyyMMdd.HHmmss";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

                assert model.group == group
            }
    
            void withName(String name) {
                assert model.name == name
            }
    
            void withGAV(String gav) {
                def coord = gav.split(':')
                def v = coord.length > 2 ? coord[2] : ''
                withGAV(coord[0], coord[1], v)
            }
    
            void withGAV(String group, String name, String version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. 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)
  6. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

         * method "filters" out in WHICH artifact are we interested in, but it intentionally neglects extension as
         * ArtifactDescriptorReader modifies extension to "pom" during collect. So all we have to rely on is GAV only.
         */
        static boolean isInScope(Artifact artifact, Artifact nodeArtifact) {
            return Objects.equals(artifact.getGroupId(), nodeArtifact.getGroupId())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 12 11:08:37 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top