Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 104 for Jvm (0.05 sec)

  1. .teamcity/subprojects.json

        "crossVersionTests": false
      },
      {
        "name": "toolchains-jvm",
        "path": "platforms/jvm/toolchains-jvm",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": true
      },
      {
        "name": "toolchains-jvm-shared",
        "path": "platforms/jvm/toolchains-jvm-shared",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/build.gradle.kts

        implementation(project(":plugins-java-library"))
        implementation(project(":plugins-jvm-test-suite"))
        implementation(project(":plugin-use"))
        implementation(project(":process-services"))
        implementation(project(":publish"))
        implementation(project(":testing-jvm"))
        implementation(project(":toolchains-jvm"))
    
        implementation(libs.asm)
        implementation(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/build.gradle.kts

        testImplementation(testFixtures(project(":language-groovy")))
    
        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreRawTypes()
    }
    
    packageCycles {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-junit-platform/build.gradle.kts

    description = """Support classes used to run tests with the JUnit Platform testing framework.
    This project is separate from :testing-jvm-infrastructure since it requires junit-platform which itself requires Java 8+.
    This project should only be used by :testing-jvm-infrastructure, however it is not depended upon directly.
    Instead :testing-jvm-infrastructure loads classes from this project via reflection due to the above noted Java version issue.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 986 bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/process/internal/CurrentProcessTest.groovy

    import org.gradle.internal.jvm.Jvm
    import spock.lang.Specification
    
    import static org.gradle.process.internal.CurrentProcess.inferJvmOptions
    
    class CurrentProcessTest extends Specification {
        def "default JVM is the current process JVM"() {
            def currentProcess = new CurrentProcess(Mock(FileCollectionFactory))
            expect:
            currentProcess.jvm == Jvm.current()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/build.gradle.kts

        id("gradlebuild.instrumented-project")
    }
    
    description = """JVM-specific testing functionality, including the Test type and support for configuring options for and detecting
    tests written in various JVM testing frameworks. This project "extends" the testing-base project by sub-typing many
    of its abstractions with JVM-specific abstractions or implementations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/build.gradle.kts

        api(project(":enterprise-logging"))
        api(project(":file-collections"))
        api(project(":jvm-services"))
        api(project(":model-core"))
        api(project(":persistent-cache"))
        api(project(":platform-base"))
        api(project(":platform-jvm"))
        api(project(":resources"))
        api(project(":toolchains-jvm-shared"))
    
        api(libs.kotlinStdlib)
        api(libs.inject)
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm-shared/build.gradle.kts

        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.  Toolchain usage requires JVM distribution.")
        }
    }
    
    packageCycles {
        // Needed for the factory methods in the interface
        excludePatterns.add("org/gradle/jvm/toolchain/JavaLanguageVersion**")
        excludePatterns.add("org/gradle/jvm/toolchain/**")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/build.gradle.kts

        implementation(project(":language-jvm"))
        implementation(project(":logging"))
        implementation(project(":platform-jvm"))
        implementation(project(":plugins-java"))
        implementation(project(":plugins-java-base"))
        implementation(project(":reporting"))
        implementation(project(":toolchains-jvm"))
        implementation(project(":toolchains-jvm-shared"))
    
        implementation(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-test-report-aggregation/build.gradle.kts

        api(project(":platform-jvm"))
    
        api(libs.inject)
    
        implementation(project(":base-services"))
        implementation(project(":core"))
        implementation(project(":plugins-java-base"))
        implementation(project(":plugins-jvm-test-suite"))
        implementation(project(":reporting"))
        implementation(project(":testing-base"))
        implementation(project(":testing-jvm"))
        implementation(project(":test-suites-base"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top