Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for SourceSet (0.13 sec)

  1. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/plugins/ApplicationPluginTest.groovy

    import org.gradle.api.distribution.plugins.DistributionPlugin
    import org.gradle.api.file.CopySpec
    import org.gradle.api.internal.tasks.JvmConstants
    import org.gradle.api.tasks.JavaExec
    import org.gradle.api.tasks.SourceSet
    import org.gradle.api.tasks.TaskDependencyMatchers
    import org.gradle.api.tasks.application.CreateStartScripts
    import org.gradle.api.tasks.bundling.Tar
    import org.gradle.api.tasks.bundling.Zip
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/BuildLogicChangeFixture.groovy

            }
        }
    
        private void writeResource(String text) {
            writeSourceFile "resources", "resource.txt", text
        }
    
        private void writeSourceFile(String sourceSet, String fileName, String text) {
            file("src/main/" + sourceSet + "/" + fileName).text = text
        }
    
        private TestFile file(String path) {
            projectDir.file(path)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

         * <p>
         * {@link SourceSet#getOutput()} and the classpath-returning methods on the returned
         * source set should ideally be avoided in favor of the similarly-named methods on
         * this feature. The concept of source sets having a single set of outputs is only
         * relevant for single-target features.
         *
         * @return This feature's source set.
         */
        SourceSet getSourceSet();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

        val buildTimeMs: Int
    ) {
        constructor(jsonObject: JSONObject) : this(
            TestClassAndSourceSet(
                jsonObject.getString("testClass"),
                jsonObject.getString("sourceSet")
            ),
            jsonObject.getIntValue("buildTimeMs")
        )
    }
    
    data class TestCoverageAndBucketSplits(
        val testCoverageUuid: Int,
        val buckets: List<FunctionalTestBucket>
    )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

    import org.gradle.api.project.IsolatedProject
    import org.gradle.api.publish.Publication
    import org.gradle.api.services.BuildService
    import org.gradle.api.services.internal.BuildServiceProvider
    import org.gradle.api.tasks.SourceSet
    import org.gradle.api.tasks.SourceSetContainer
    import org.gradle.api.tasks.TaskContainer
    import org.gradle.api.tasks.TaskDependency
    import org.gradle.internal.serialize.graph.unsupported
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. testing/precondition-tester/build.gradle.kts

    dependencies {
        // ========================================================================
        // All subprojects, which has their own preconditions.
        // These projects should have their preconditions in the "src/testFixtures" sourceSet,
        // except test-support projects (i.e. internal-testing, internal-integ-testing)
        // ========================================================================
        testImplementation(project(":internal-testing")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 04:59:12 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

        reportFormat = "console"
    }
    
    tasks.withType<CodeNarc>().configureEach {
        if (name.contains("IntegTest")) {
            config = configFile("codenarc-integtests.xml")
        }
    }
    
    val SourceSet.allGroovy: SourceDirectorySet
        get() = the<GroovySourceDirectorySet>()
    
    abstract class CodeNarcRule @Inject constructor(
        private val groovyVersion: String
    ) : ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

     * names added by the Java plugin. Eventually, we should deprecate many of the public constants in the Java plugin
     * and push users to using the corresponding methods on {@link org.gradle.api.tasks.SourceSet}.
     */
    public final class JvmConstants {
        /**
         * The name of the task that processes resources.
         */
        public static final String PROCESS_RESOURCES_TASK_NAME = "processResources";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                emptyList(),
                extraParameters = "-PonlyTestGradleVersion=$startInclusive-$endExclusive"
            )
        }
    }
    
    data class TestClassAndSourceSet(
        val testClass: String,
        val sourceSet: String
    )
    
    data class SmallSubprojectBucket(
        val subprojects: List<GradleSubproject>,
        val parallelizationMethod: ParallelizationMethod
    ) : BuildTypeBucket {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaModule.groovy

        }
    
        static String variantName(String featureName, String baseName) {
            if (featureName == MAIN_FEATURE) {
                baseName
            } else {
                featureName + 'SourceSet' + baseName.capitalize()
            }
        }
    
        private static String featurePrefix(String feature) {
            feature == MAIN_FEATURE ? "" : "$feature-"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top