Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 160 for runtimeOnly (0.24 sec)

  1. platforms/documentation/docs/src/snippets/artifacts/externalDependencies/groovy/build.gradle

    dependencies {
        runtimeOnly group: 'org.springframework', name: 'spring-core', version: '2.5'
        runtimeOnly 'org.springframework:spring-core:2.5',
                'org.springframework:spring-aop:2.5'
        runtimeOnly(
            [group: 'org.springframework', name: 'spring-core', version: '2.5'],
            [group: 'org.springframework', name: 'spring-aop', version: '2.5']
        )
        runtimeOnly('org.hibernate:hibernate:3.0.5') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/artifacts/externalDependencies/kotlin/build.gradle.kts

        }
    }
    // end::use-configuration[]
    
    // tag::module-dependencies[]
    dependencies {
        runtimeOnly(group = "org.springframework", name = "spring-core", version = "2.5")
        runtimeOnly("org.springframework:spring-aop:2.5")
        runtimeOnly("org.hibernate:hibernate:3.0.5") {
            isTransitive = true
        }
        runtimeOnly(group = "org.hibernate", name = "hibernate", version = "3.0.5") {
            isTransitive = true
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.dot

       "runtimeClasspath" -> "runtimeOnly"
       "runtimeOnly" [shape="box", label=<<B>runtimeOnly</B>>, color="chartreuse3", bgcolor="chartreuse3", style="filled"]
       "runtimeClasspath" -> "implementation"
       "runtimeElements" [shape="box", label=<<B>runtimeElements</B>(C)>, color="pink", bgcolor="pink", style="filled"]
       "runtimeElements" -> "implementation"
       "runtimeElements" -> "runtimeOnly"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/build.gradle.kts

        implementation(libs.commonsIo)
        implementation(libs.commonsLang)
        implementation(libs.ant)
    
        runtimeOnly(project(":gradle-cli-main"))
        runtimeOnly(project(":declarative-dsl-provider"))
        runtimeOnly(project(":problems"))
    
        runtimeOnly(libs.commonsIo)
        runtimeOnly(libs.commonsLang)
        runtimeOnly(libs.slf4jApi)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/build.gradle.kts

        implementation(project(":plugins-java-base"))
        implementation(project(":testing-jvm"))
        implementation(project(":test-suites-base"))
    
        runtimeOnly(project(":dependency-management"))
        runtimeOnly(project(":testing-base"))
        runtimeOnly(project(":toolchains-jvm"))
    
        runtimeOnly(libs.groovy)
    
        testImplementation(testFixtures(project(":core")))
    
        integTestImplementation(testFixtures(projects.messaging))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/build.gradle.kts

        // GSon is not strictly required here but removing it moves the dependency in the distribution from lib to lib/plugins
        // TODO Check if this is an issue
        runtimeOnly(libs.gson)
        runtimeOnly(libs.jclToSlf4j)
        runtimeOnly(libs.log4jToSlf4j)
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":testing-jvm")))
        testImplementation(libs.groovyDatetime)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/build.gradle

    apply plugin: 'java'
    apply plugin: 'idea'
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        runtimeOnly 'commons-collections:commons-collections:3.2.2@jar'
        runtimeOnly 'junit:junit:4.7@jar'
    }
    
    idea {
        pathVariables CUSTOM_DIR: new File(gradle.gradleUserHomeDir, 'custom')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 288 bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-library/src/test/groovy/org/gradle/api/plugins/JavaLibraryPluginTest.groovy

            !implementation.canBeResolved
    
            when:
            def runtimeOnly = project.configurations.getByName(JvmConstants.RUNTIME_ONLY_CONFIGURATION_NAME)
    
            then:
            runtimeOnly.transitive
            !runtimeOnly.visible
            !runtimeOnly.canBeConsumed
            !runtimeOnly.canBeResolved
            runtimeOnly.extendsFrom == [] as Set
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 20:08:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-library/build.gradle.kts

        implementation(project(":platform-jvm"))
        implementation(project(":plugins-distribution"))
        implementation(project(":plugins-java"))
        implementation(project(":plugins-jvm-test-suite"))
    
        runtimeOnly(project(":core"))
        runtimeOnly(project(":platform-base"))
    
        testImplementation(project(":plugins-java-base"))
    
        testImplementation(testFixtures(project(":core")))
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 19:34:53 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/dependencies/JavaConfigurationSetupIntegrationTest.groovy

            where:
            plugin         | configuration                  | alternatives
    
            'java'         | 'compileOnly'                  | VALID
            'java'         | 'runtimeOnly'                  | VALID
            'java'         | 'implementation'               | VALID
            'java'         | 'apiElements'                  | FORBIDDEN
            'java'         | 'runtimeElements'              | FORBIDDEN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top