Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 144 for BuildSrc (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            outputContains 'onFinished'
        }
    
        @Issue('https://github.com/gradle/gradle/issues/20001')
        def "build service from buildSrc is not restored"() {
            given:
            def onFinishMessage = "You won't see me!"
            withListenerBuildServicePlugin onFinishMessage
            createDir('buildSrc') {
                file('settings.gradle') << """
                    pluginManagement {
                        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

            then:
            plugin.assertUnsupportedMessage(output, UNSUPPORTED_TOGGLE_MESSAGE)
        }
    
        def "checkin happens once for build with buildSrc"() {
            given:
            applyPlugin()
            file("buildSrc/src/main/groovy/Thing.groovy") << "class Thing {}"
    
            when:
            succeeds "t"
    
            then:
            plugin.serviceCreatedOnce(output)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskDependenciesCrossVersionSpec.groovy

            task(':c').dependencies == tasks(':b')
            task(':d').dependencies == tasks(':b', ':c')
        }
    
        def "reports task dependencies for tasks in buildSrc"() {
            given:
            file('buildSrc/build.gradle') << """
                task a { enabled = false }
                task b { dependsOn(a) }
                task c { dependsOn(b) }
                task d { dependsOn(b, c) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildStateRegistry.java

         */
        IncludedBuildState addImplicitIncludedBuild(BuildDefinition buildDefinition);
    
        /**
         * Locates the buildSrc build for the given build, if present. Returns null if the given build does not have an associated buildSrc build.
         */
        @Nullable
        StandAloneNestedBuild getBuildSrcNestedBuild(BuildState owner);
    
        /**
         * Creates a new standalone nested build tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsDynamicGroovyBuildSrcIntegrationTest.groovy

        @Override
        String getLocation() {
            return "Plugin class 'SneakyPlugin'"
        }
    
        @Override
        void buildLogicApplication(BuildInputRead read) {
            dynamicGroovyPlugin(file("buildSrc/src/main/groovy/SneakyPlugin.groovy"), read)
            buildFile << """
                apply plugin: SneakyPlugin
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsJavaLambdaBuildSrcIntegrationTest.groovy

        @Override
        String getLocation() {
            return "Plugin class 'SneakyPlugin'"
        }
    
        @Override
        void buildLogicApplication(BuildInputRead read) {
            javaLambdaPlugin(file("buildSrc/src/main/java/SneakyPlugin.java"), read)
            buildFile << """
                apply plugin: SneakyPlugin
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsStaticGroovyBuildSrcIntegrationTest.groovy

        @Override
        String getLocation() {
            return "Plugin class 'SneakyPlugin'"
        }
    
        @Override
        void buildLogicApplication(BuildInputRead read) {
            staticGroovyPlugin(file("buildSrc/src/main/groovy/SneakyPlugin.groovy"), read)
            buildFile << """
                apply plugin: SneakyPlugin
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

        }
    
        void withParameterClassReferencingClassInAnotherPackage() {
            file("buildSrc/src/main/java/org/gradle/another/Bar.java").text = """
                package org.gradle.another;
    
                import java.io.Serializable;
    
                public class Bar implements Serializable { }
            """
    
            file("buildSrc/src/main/java/org/gradle/other/Foo.java").text = """
                package org.gradle.other;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r75/CustomTestTaskProgressEventCrossVersionTest.groovy

    class CustomTestTaskProgressEventCrossVersionTest extends ToolingApiSpecification {
    
        def "receives progress events from custom test task implementations"() {
            setup:
            Snippets.customTestTask(buildFile, file('buildSrc'))
    
            ValidatingProgressEventListener validatingListener = new ValidatingProgressEventListener()
    
            when:
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/main/java/org/gradle/initialization/buildsrc/GroovyBuildSrcProjectConfigurationAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.initialization.buildsrc;
    
    import org.gradle.api.artifacts.dsl.DependencyHandler;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.tasks.JvmConstants;
    import org.gradle.api.plugins.GroovyPlugin;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top