Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for javaPlatform (0.47 sec)

  1. subprojects/core-platform/build.gradle.kts

    plugins {
        id("gradlebuild.platform")
    }
    
    description = "Defines which JARs go into the core part (libs/*.jar) of a Gradle distribution (NOT libs/plugins/*.jar)."
    
    javaPlatform.allowDependencies()
    
    dependencies {
        runtime(project(":installation-beacon"))
        runtime(project(":api-metadata"))
        runtime(project(":daemon-server")) {
            because("This is the Gradle daemon implementation, which transitively depends on all other core projects.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. build.gradle.kts

        kotlinExtension.sourceSets.configureEach {
          languageSettings.optIn("okhttp3.ExperimentalOkHttpApi")
        }
      }
    }
    
    /** Configure publishing and signing for published Java and JavaPlatform subprojects. */
    subprojects {
      tasks.withType<DokkaTaskPartial>().configureEach {
        dokkaSourceSets.configureEach {
          reportUndocumented.set(false)
          skipDeprecated.set(true)
          jdkVersion.set(8)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:32:42 UTC 2024
    - 8.9K bytes
    - Viewed (1)
  3. subprojects/distributions-dependencies/build.gradle.kts

    val tomljVersion = "1.0.0"
    
    // test only
    val archunitVersion = "1.2.0"
    val bytebuddyVersion = "1.10.20"
    val jettyVersion = "9.4.36.v20210114"
    val sshdVersion = "2.12.1"
    
    // For the junit-bom
    javaPlatform.allowDependencies()
    
    dependencies {
        api(platform("org.junit:junit-bom:${junit5Version}!!"))
    
        constraints {
            api(libs.ansiControlSequenceUtil) { version { strictly("0.3") }}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 19:54:08 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top