Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for testRuntime (0.19 sec)

  1. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/java/JavaApplicationOutgoingVariantsIntegrationTest.groovy

        dependencies {
            implementation project(':other-java')
            implementation files('file-dep.jar')
            compileOnly 'test:compile-only:1.0'
            implementation 'test:implementation:1.0'
            runtimeOnly 'test:runtime-only:1.0'
        }
    }
    
    project(':consumer') {
        configurations { consume }
        dependencies { consume project(':java') }
        task resolve {
            inputs.files configurations.consume
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaProjectOutgoingVariantsIntegrationTest.groovy

        dependencies {
            implementation project(':other-java')
            implementation files('file-dep.jar')
            compileOnly 'test:compile-only:1.0'
            implementation 'test:implementation:1.0'
            runtimeOnly 'test:runtime-only:1.0'
        }
    }
    
    project(':consumer') {
        configurations { consume }
        dependencies { consume project(':java') }
        task resolve {
            def config = configurations.consume
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

                DependencyScope.TEST);
    
        PathScope TEST_RUNTIME = pathScope(
                "test-runtime",
                ProjectScope.TEST,
                DependencyScope.COMPILE,
                DependencyScope.RUNTIME,
                DependencyScope.PROVIDED,
                DependencyScope.TEST,
                DependencyScope.TEST_RUNTIME);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

            implementation files('file-dep.jar')
            compileOnly 'test:compile-only:1.0'
            compileOnlyApi 'test:compile-only-api:1.0'
            implementation 'test:implementation:1.0'
            runtimeOnly 'test:runtime-only:1.0'
        }
    }
    
    project(':consumer') {
        configurations { consume }
        dependencies { consume project(':java') }
        task resolve {
            inputs.files configurations.consume
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

                    singleton(CommonBuilds.PROJECT_PATH_MAIN, CommonBuilds.BUILD_PATH_COMPILE)));
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.TEST_RUNTIME.id(),
                    DependencyScope.TEST_RUNTIME.isTransitive(),
                    singleton(CommonBuilds.PROJECT_PATH_TEST, CommonBuilds.BUILD_PATH_RUNTIME)));
            result.add(internalScopeManager.createDependencyScope(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven4ScopeManagerConfiguration.java

                    singleton(CommonBuilds.PROJECT_PATH_MAIN, CommonBuilds.BUILD_PATH_COMPILE)));
            result.add(internalScopeManager.createDependencyScope(
                    DependencyScope.TEST_RUNTIME.id(),
                    DependencyScope.TEST_RUNTIME.isTransitive(),
                    singleton(CommonBuilds.PROJECT_PATH_TEST, CommonBuilds.BUILD_PATH_RUNTIME)));
            result.add(internalScopeManager.createDependencyScope(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

         * Test compile only.
         */
        TEST_ONLY("test-only", false),
    
        /**
         * Test compile and test runtime.
         */
        TEST("test", false),
    
        /**
         * Test runtime.
         */
        TEST_RUNTIME("test-runtime", false),
    
        /**
         * System scope.
         */
        SYSTEM("system", false);
    
        private static final Map<String, DependencyScope> IDS = Collections.unmodifiableMap(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/ExtensibleEnumRegistries.java

                super(
                        providers,
                        PathScope.MAIN_COMPILE,
                        PathScope.MAIN_RUNTIME,
                        PathScope.TEST_COMPILE,
                        PathScope.TEST_RUNTIME);
            }
        }
    
        @Named
        @SessionScoped
        public static class DefaultProjectScopeRegistry
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaCompileOnlyDependencyIntegrationTest.groovy

    repositories {
        maven { url '$mavenRepo.uri' }
    }
    
    dependencies {
        implementation 'org.gradle.test:implementation:1.2'
        compileOnly 'org.gradle.test:compileOnly:1.0'
        runtimeOnly 'org.gradle.test:runtime:1.1'
    }
    
    task checkCompileClasspath {
        def compileClasspath = configurations.compileClasspath
        def expectedFiles = provider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top