Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for versions_my (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

            })
    
            where:
            name          | prefix
            "bundles"     | "bundles"
            "versions"    | "versions"
            "plugins"     | "plugins"
            "bundles-my"  | "bundles"
            "versions_my" | "versions"
            "plugins.my"  | "plugins"
        }
    
        @VersionCatalogProblemTestFor(
            VersionCatalogProblemId.RESERVED_ALIAS_NAME
        )
        def "allows using #name as a dependency alias"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

        private static final String BUNDLES_KEY = "bundles";
        private static final String VERSIONS_KEY = "versions";
        private static final String PLUGINS_KEY = "plugins";
        private static final Set<String> TOP_LEVEL_ELEMENTS = ImmutableSet.of(
            METADATA_KEY,
            LIBRARIES_KEY,
            BUNDLES_KEY,
            VERSIONS_KEY,
            PLUGINS_KEY
        );
        private static final Set<String> PLUGIN_COORDINATES = ImmutableSet.of(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    In the example above, `A` would have to say it _strictly depends on 1.1_.
    
    For this reason, a good practice is that if you use _strict versions_, you should express them in terms of ranges and a preferred version within this range.
    For example, `B` might say, instead of `strictly 1.0`, that it _strictly depends_ on the `[1.0, 2.0[` range, but _prefers_ `1.0`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    ### Changelog
    
    #### 1.1
    
    - Adds support to _endorse strict versions_ defined in another module: `{ "group": "some.group", "module": "other-lib", "version": { "requires": "3.4" }, "endorseStrictVersions": "true"`
    - Adds `thirdPartyCompatibility` features for better compatibility with maven and ivy metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    Here, we _manipulate the requested versions_ in order to select a different version when we find a rejected one.
    In other words, this is a _solution_ to rejected versions, while rich version constraints allow declaring the _intent_ (you should not use this version).
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top