Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isUseJar (0.1 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationSupport.groovy

            buildFile << """
                project(':$from') {
                    dependencies { api project(':$to') }
                }
            """
        }
    
        protected abstract boolean isUseJar()
    
        protected void clearImplProjectDependencies() {
            buildFile << """
                project(':impl') {
                    configurations.api.dependencies.clear() //so that api jar is no longer on classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractJavaGroovyCompileAvoidanceIntegrationSpec.groovy

    import org.gradle.integtests.fixtures.FeaturePreviewsFixture
    import spock.lang.Issue
    
    abstract class AbstractJavaGroovyCompileAvoidanceIntegrationSpec extends AbstractIntegrationSpec {
        abstract boolean isUseJar()
    
        abstract boolean isIncremental()
    
        abstract CompiledLanguage getLanguage()
    
        def setup() {
            createDirs("a", "b")
            settingsFile << """
                include 'a', 'b'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30K bytes
    - Viewed (0)
Back to top