Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 385 for allprojects (0.76 sec)

  1. .github/workflows/codeql-analysis.init.gradle

     * 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.
     */
    
    allprojects {
        tasks.withType(JavaCompile).configureEach {
            outputs.doNotCacheIf("CodeQL scanning", { true })
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 10 05:36:54 UTC 2020
    - 745 bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/resources/org/gradle/scala/compile/ScalaCompileWithJavaLibraryIntegrationTest/javaLibraryCanDependOnScalaLibraryProject/build.gradle

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id 'java-library'
    }
    
    allprojects {
        repositories {
            mavenCentral()
        }
    }
    
    dependencies {
        implementation project(":lib")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 770 bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/BuildEventsErrorIntegrationTest.groovy

                    .assertHasFileName("Build file '$buildFile'")
                    .assertHasLineNumber(3)
        }
    
        def "produces reasonable error when Gradle.allprojects action fails"() {
            def initScript = initScript """
    allprojects {
        throw new RuntimeException("broken")
    }
    """
            when:
            executer.usingInitScript(initScript)
            fails "a"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

    import spock.lang.Timeout
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    @Requires(IntegTestPreconditions.NotParallelExecutor)
    @ToBeFixedForIsolatedProjects(because = "allprojects")
    // no point, always runs in parallel
    class ParallelTaskExecutionIntegrationTest extends AbstractIntegrationSpec implements ValidationMessageChecker {
    
        @Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompiledLanguage.groovy

            return StringUtils.capitalize(getName())
        }
    
        String getCompileTaskName() {
            return "compile${name.capitalize()}"
        }
    
        String projectGroovyDependencies(String allprojectsOrSubproject= 'allprojects') {
            this == GROOVY ?
                """
                ${allprojectsOrSubproject} {
                    dependencies {
                        implementation localGroovy()
                    }
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FilteredConfigurationIntegrationTest.groovy

            mavenRepo.module("group", "test2", "1.0").publish()
    
            createDirs("child1", "child2")
            settingsFile << """
    rootProject.name = "main"
    include "child1", "child2"
    """
            buildFile << """
    allprojects {
        repositories {
            maven { url '${mavenRepo.uri}' }
        }
        configurations {
            compile
            create('default') { extendsFrom compile }
        }
    }
    artifacts {
        compile file("main.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTaskExecutionCrossVersionSpec.groovy

        }
    
        def "can use task selector"() {
            setup:
            settingsFile << '''
                rootProject.name = 'root'
                include 'a'
            '''
            buildFile << '''
                allprojects {
                    tasks.register('foo')
                }
            '''
            file('a').mkdirs()
    
            when:
            launchTestWithTestFilter { tl ->
                tl.forTasks('foo', 'test')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/MavenProjectsCreator.java

            //we should add coverage for nested multi-project builds with multiple parents.
            reactorProjects.add(mavenProject);
            List<ProjectBuildingResult> allProjects = builder.build(ImmutableList.of(pomFile), true, buildingRequest);
            CollectionUtils.collect(allProjects, reactorProjects, ProjectBuildingResult::getProject);
    
            MavenExecutionResult result = new DefaultMavenExecutionResult();
            result.setProject(mavenProject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/ParallelActionExecutionCrossVersionSpec.groovy

        def "nested action can run further nested actions"() {
            settingsFile << """
                rootProject.name = 'root'
                include 'a', 'b'
            """
            buildFile << """
                allprojects {
                    apply plugin: CustomPlugin
                    apply plugin: 'java'
                }
            """
    
            expect:
            def models = withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

    @FluidDependenciesResolveTest
    class ResolvedConfigurationApiIntegrationTest extends AbstractHttpDependencyResolutionTest {
        def setup() {
            settingsFile << """
    rootProject.name = 'test'
    """
            buildFile << """
    allprojects {
        configurations {
            compile
            "default" {
                extendsFrom compile
            }
        }
    }
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top