Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for catalog (0.44 sec)

  1. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    Typically, this happens if you tried to import a catalog using `from(files("some-catalog.txt"))`.
    
    Currently Gradle only supports TOML version catalogs.
    
    To fix this problem, either import a TOML file, or use the `Settings` API to declare your catalog.
    
    [[catalog_file_does_not_exist]]
    == Catalog file doesn't exist
    
    This error indicates that you tried to import a catalog file, but the file doesn't exist.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            assertEquals("http://www.example.com/catalog?item=12&desc=vacation_hawaii", sitemaps[1].getLoc());
            assertEquals("weekly", ((SitemapUrl) sitemaps[1]).getChangefreq());
            assertNull(((SitemapUrl) sitemaps[1]).getPriority());
    
            assertEquals("2004-12-23", sitemaps[2].getLastmod());
            assertEquals("http://www.example.com/catalog?item=73&desc=vacation_new_zealand", sitemaps[2].getLoc());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/dependency_management_basics.adoc

    == Version Catalog
    
    Version catalogs provide a way to centralize your dependency declarations in a `libs.versions.toml` file.
    
    The catalog makes sharing dependencies and version configurations between subprojects simple.
    It also allows teams to enforce versions of libraries and plugins in large projects.
    
    The version catalog typically contains four sections:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:47:52 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'dependency-version-catalog:invalid-dependency-notation' : 'Dependency version catalog problem',
            'dependency-version-catalog:reserved-alias-name' : 'version catalog error',
            'dependency-version-catalog:catalog-file-does-not-exist' : 'version catalog error',
            'dependency-version-catalog:toml-syntax-error' : 'Dependency version catalog problem',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/software/plugins-version-catalog/src/integTest/groovy/org/gradle/catalog/VersionCatalogPluginApplicationIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.catalog
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.test.fixtures.plugin.PluginBuilder
    
    class VersionCatalogPluginApplicationIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:22 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-settings/groovy/build.gradle

        // Use the plugin `versions` as declared in the `libs` version catalog
        alias(libs.plugins.versions)
    }
    // end::use_plugin[]
    
    // tag::simple_dependency_use[]
    dependencies {
        implementation(libs.groovy.core)
    }
    // end::simple_dependency_use[]
    
    // tag::use_version[]
    checkstyle {
        // will use the version declared in the catalog
        toolVersion = libs.versions.checkstyle.get()
    }
    // end::use_version[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 11:03:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/attributes/Usage.java

         *
         * @since 4.1
         */
        String SWIFT_API = "swift-api";
    
        /**
         * A version catalog, packaged as TOML files, for use as recommendations
         * for dependency and plugin versions.
         *
         * @since 7.0
         */
        String VERSION_CATALOG = "version-catalog";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/GradleCoreProblemGroup.java

        private static final DefaultProblemGroup VERSION_CATALOG_PROBLEM_GROUP = new DefaultProblemGroup("dependency-version-catalog", "Version catalog");
    
        public static CompilationProblemGroup compilation() {
            return COMPILATION_PROBLEM_GROUP;
        }
    
        public static ProblemGroup deprecation() {
            return DEPRECATION_PROBLEM_GROUP;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/catalog/problems/DefaultCatalogProblemBuilder.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.catalog.problems;
    
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.api.initialization.dsl.VersionCatalogBuilder;
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.api.problems.internal.DocLink;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/jvm/distributions-jvm/build.gradle.kts

        pluginsRuntimeOnly(project(":plugins-jvm-test-suite"))
        pluginsRuntimeOnly(project(":plugins-test-report-aggregation"))
        pluginsRuntimeOnly(project(":plugins-version-catalog"))
        pluginsRuntimeOnly(project(":scala"))
        pluginsRuntimeOnly(project(":war"))
    
        pluginsRuntimeOnly(project(":java-platform")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top