Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toggleCompileClasspathPackaging (0.23 sec)

  1. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCompilationIntegrationTest.groovy

    import java.util.jar.JarEntry
    import java.util.jar.JarOutputStream
    
    class JavaLibraryCompilationIntegrationTest extends AbstractIntegrationSpec {
    
        private toggleCompileClasspathPackaging(boolean activate) {
            if (activate) {
                propertiesFile << """
                    systemProp.org.gradle.java.compile-classpath-packaging=true
                """.trim()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import spock.lang.Issue
    
    class JavaLibraryFeatureCompilationIntegrationTest extends AbstractIntegrationSpec {
    
        private toggleCompileClasspathPackaging(boolean activate) {
            if (activate) {
                propertiesFile << """
                    systemProp.org.gradle.java.compile-classpath-packaging=true
                """.trim()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-jvm-test-fixtures/src/testFixtures/groovy/org/gradle/java/fixtures/AbstractJavaProjectTestFixturesIntegrationTest.groovy

            """
        }
    
        private toggleCompileClasspathPackaging(boolean activate) {
            if (activate) {
                propertiesFile << """
                    systemProp.org.gradle.java.compile-classpath-packaging=true
                """.trim()
            }
        }
    
        def "can compile test fixtures [compileClasspathPackaging=#compileClasspathPackaging]"() {
            toggleCompileClasspathPackaging(compileClasspathPackaging)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top