Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 141 for jre (0.03 sec)

  1. guava-testlib/README.md

    ```xml
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-testlib</artifactId>
      <version>33.2.1-jre</version>
      <scope>test</scope>
    </dependency>
    ```
    
    To add a dependency using Gradle:
    
    ```gradle
    dependencies {
      test 'com.google.guava:guava-testlib:33.2.1-jre'
    }
    ```
    
    ## Links
    
    -   [GitHub project](https://github.com/google/guava)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-attributeSubstitutionRule/groovy/lib/build.gradle

    plugins {
        id 'myproject.java-library-conventions'
    }
    
    // tag::dependencies[]
    dependencies {
        // This is a platform dependency but you want the library
        implementation platform('com.google.guava:guava:28.2-jre')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-attributeSubstitutionRule/kotlin/lib/build.gradle.kts

    plugins {
        id("myproject.java-library-conventions")
    }
    
    // tag::dependencies[]
    dependencies {
        // This is a platform dependency but you want the library
        implementation(platform("com.google.guava:guava:28.2-jre"))
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 247 bytes
    - Viewed (0)
  4. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/dependencies.toml

    groovy = "2.5.6"
    
    [libraries]
    groovy = { module = "org.codehaus.groovy:groovy", version.ref = "groovy" }
    groovy-json = { module = "org.codehaus.groovy:groovy-json", version.ref = "groovy" }
    
    guava = "com.google.guava:guava:17.0-jre"
    
    [bundles]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 290 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/groovy/catalog/repo/com/mycompany/catalog/1.0/catalog-1.0.toml

    #
    # This file has been generated by Gradle and is intended to be consumed by Gradle
    #
    [libraries]
    guava = {group = "com.google.guava", name = "guava", version = "28.0-jre" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/DaemonJavaCompilerIntegrationTest.groovy

        @Requires([
            UnitTestPreconditions.Jdk8OrEarlier,
            UnitTestPreconditions.JdkOracle
        ])
        def "handles -bootclasspath being specified"() {
            def jre = AvailableJavaHomes.getBestJre()
            def bootClasspath = TextUtil.escapeString(jre.absolutePath) + "/lib/rt.jar"
            goodCode()
            buildFile << """
                tasks.withType(JavaCompile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    [[sec:precedence]]
    == Toolchain installations precedence
    
    Gradle will sort all the JDK/JRE installations matching the toolchain specification of the build and will pick the first one.
    Sorting is done based on the following rules:
    
    . the installation currently running Gradle is preferred over any other
    . JDK installations are preferred over JRE ones
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/introductionCoreDependencies/groovy/build.gradle

    plugins {
        id 'java-library'
    }
    
    repositories { // <1>
        google() // <2>
        mavenCentral()
    }
    
    dependencies { // <3>
        implementation 'com.google.guava:guava:32.1.2-jre' // <4>
        testImplementation 'junit:junit:4.13.2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 229 bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/groovy/environment/JreJavaHomeGroovyIntegrationTest.groovy

        def "groovy java cross compilation works in forking mode = #forkMode when JAVA_HOME is set to JRE"() {
            given:
            def jreJavaHome = AvailableJavaHomes.bestJre
            writeJavaTestSource("src/main/groovy")
            writeGroovyTestSource("src/main/groovy")
            file('build.gradle') << """
                    println "Used JRE: ${jreJavaHome.absolutePath.replace(File.separator, '/')}"
                    apply plugin:'groovy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/unexpected-version-key-3.toml

    [libraries.guava]
    group = "com.google.guava"
    name = "guava"
    
    [libraries.guava.version]
    prefer = "18.0-jre"
    invalid = "nope"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 149 bytes
    - Viewed (0)
Back to top