Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for runtimeOnly (0.11 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    implementation.exclude(group: "implementation-group", module: "implementation-module")
                    runtimeOnly.exclude(group: "runtimeOnly-group", module: "runtimeOnly-module")
                }
    
                $dependencies
    
                publishing {
                    publications {
                        ivy(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                this.dependencies.dependency("implementation", comment, dependencies);
            }
    
            void runtimeOnly(String comment, BuildInitDependency... dependencies) {
                this.dependencies.dependency("runtimeOnly", comment, dependencies);
            }
    
            @Override
            public void writeCodeTo(PrettyPrinter printer) {
                if (isDefaultTestSuite) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

      * If using JUnit 5, an explicit `runtimeOnly` dependency on `junit-platform-launcher` is required
      in addition to the existing `implementation` dependency on the test engine.
      * If using JUnit 4, only the existing `implementation` dependency on `junit` 4 is required.
      * If using JUnit 3, a test `runtimeOnly` dependency on `junit` 4 is required in addition to a
      `compileOnly` dependency on `junit` 3.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    For the main project build scripts and precompiled project script plugins:
    
    * Dependency and artifact configurations (such as `implementation` and `runtimeOnly` contributed by the Java Plugin)
    * Project extensions and conventions (such as `sourceSets`), and extensions on them
    * Extensions on the `dependencies` and `repositories` containers, and extensions on them
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top