Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Bradley (0.05 sec)

  1. integration-tests/gradle/build.gradle.kts

    subprojects {
      if (name.endsWith("Java")) {
        apply(plugin = "java-library")
      } else {
        apply(plugin = "com.android.application")
        the<com.android.build.gradle.AppExtension>().compileSdkVersion(30)
      }
    
      var expectedClasspath =
        if (runningGradle5) {
          // without Gradle Module Metadata (only the POM is used)
          // - variant decision is made based on version suffix (android/jre) and not on the actual
          // environment
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. 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)
  3. README.md

      <artifactId>guava</artifactId>
      <version>33.2.1-jre</version>
      <!-- or, for Android: -->
      <version>33.2.1-android</version>
    </dependency>
    ```
    
    To add a dependency using Gradle:
    
    ```gradle
    dependencies {
      // Pick one:
    
      // 1. Use Guava in your implementation only:
      implementation("com.google.guava:guava:33.2.1-jre")
    
      // 2. Use Guava types in your public API:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top