Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for buildscript (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DefaultDependencyLockingProvider.java

                lockFileReaderWriter.writeUniqueLockfile(allLockState);
                if (context.isScript()) {
                    LOGGER.lifecycle("Persisted dependency lock state for buildscript of project '{}'", context.getProjectPath());
                } else {
                    LOGGER.lifecycle("Persisted dependency lock state for project '{}'", context.getProjectPath());
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

                    is Program.PluginManagement -> emitStage1Sequence(program)
                    is Program.Stage1Sequence -> emitStage1Sequence(program.pluginManagement, program.buildscript, program.plugins)
                    else -> throw IllegalStateException("Expecting a residual program with plugins, got `$program'")
                }
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

            def workActionJarName = "workAction.jar"
            withWorkActionClassInExternalJar(file(workActionJarName))
    
            buildFile << """
                buildscript {
                    dependencies {
                        classpath files("$workActionJarName")
                    }
                }
    
                task runInWorker(type: WorkerTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/LockFileReaderWriter.java

        static final String EMPTY_RESOLUTIONS_ENTRY = "empty=";
        static final String BUILD_SCRIPT_PREFIX = "buildscript-";
        static final String SETTINGS_SCRIPT_PREFIX = "settings-";
    
        private final Path lockFilesRoot;
        private final DomainObjectContext context;
        private final RegularFileProperty lockFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

            file("build/output/file.txt").assertExists()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/2180")
        def "fileTrees can be used as output files"() {
            given:
            buildScript """
                task myTask {
                    inputs.file file('input.txt')
                    outputs.files fileTree(dir: 'build', include: 'output.txt')
                    def layout = project.layout
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/DeprecatedUsageBuildOperationProgressIntegrationTest.groovy

            """
    
            file('script.gradle') << """
                org.gradle.internal.deprecation.DeprecationLogger.deprecate('Plugin script').willBeRemovedInGradle9().undocumented().nagUser();
            """
    
            buildScript """
                apply from: 'script.gradle'
                apply plugin: SomePlugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    NOTE: Graph of dependencies <<tutorial_using_tasks.adoc#sec:build_script_external_dependencies, declared in the `buildscript` `classpath` configuration>> can be rendered using <<command_line_interface.adoc#sec:listing_project_dependencies, task `buildEnvironment`>>.
    
    === Output Annotations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

        }
    
        def "fails single build script dependency resolution if #protocol connection exceeds timeout"() {
            given:
            blockingForProtocol(protocol, moduleA.pom)
            buildFile << """
                buildscript {
                    ${mavenRepository(mavenHttpRepo)}
    
                    dependencies {
                        classpath '${mavenModuleCoordinates(moduleA)}'
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

        def "can resolve recursive copy of configuration with cyclic project dependencies"() {
            given:
            createDirs("a", "b", "c")
            settingsFile << "include 'a', 'b', 'c'"
            buildScript '''
                subprojects {
                    apply plugin: 'base'
                    task jar(type: Jar)
                    artifacts {
                        'default' jar
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classpath/TransformedClassPath.java

                        break;
                    case UNKNOWN_FILE_MARKER:
                    default:
                        throw new IllegalArgumentException("Unexpected marker file: " + markerFile + " in instrumented buildscript classpath. " +
                            "Possible reason: Injecting custom artifact transform in between instrumentation stages is not supported.");
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:59:11 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top