Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 184 for buildScript (0.14 sec)

  1. samples/bookinfo/src/reviews/reviews-wlpcfg/build.gradle

    buildscript {
        repositories {
            mavenCentral()
        }
    }
    
    apply plugin: 'eclipse'
    
    task copyApplication(type: Copy) {
        dependsOn ':reviews-application:war'
        from '../reviews-application/build/libs/reviews-application-1.0.war'
        into 'servers/LibertyProjectServer/apps/'
    }
    
    task build(dependsOn: ['copyApplication']){
    }
    
    task clean {
        delete "servers/LibertyProjectServer/apps"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 397 bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationInDynamicGroovyIntegrationTest.groovy

            indyStatus = enableIndy ? "with indy" : "without indy"
        }
    
    
        // Lift the visibility of the method to make it available for the mixin
        @Override
        TestFile buildScript(@GroovyBuildScriptLanguage String script) {
            super.buildScript(script)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/FileSystemRootUpToDateIntegrationTest.groovy

                    inputDirectory = new File("${drive}\\\\")
                    output = file("${TextUtil.escapeString(outputFile.absolutePath)}")
                }
            """
            when:
            buildScript script
    
            then:
            succeeds taskName
            outputFile.text.contains inputFileName
    
            cleanup:
            cleanupSubst(drive)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CustomPluginIntegrationTest.groovy

            builder.resourceFile('META-INF/gradle-plugins/custom.properties') << '''
    implementation-class=CustomPlugin
    '''
            builder.buildJar(file('external.jar'))
    
            and:
            file('build.gradle') << '''
    buildscript {
        dependencies {
            classpath files('external.jar')
        }
    }
    apply plugin: 'custom'
    assert 'value' == prop
    task test
    '''
    
            expect:
            succeeds('test')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

    -----------------
    init - Initializes a new Gradle build.
    updateDaemonJvm - Generates or updates the Gradle Daemon JVM criteria.
    wrapper - Generates Gradle wrapper files.
    
    Help tasks
    ----------
    buildEnvironment - Displays all buildscript dependencies declared in root project '$projectName'.
    dependencies - Displays all dependencies declared in root project '$projectName'.
    dependencyInsight - Displays the insight into a specific dependency in root project '$projectName'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/UnrelatedMethodInstrumentationInDynamicGroovyIntegrationTest.groovy

            indyStatus = enableIndy ? "with indy" : "without indy"
        }
    
        // Lift the visibility of the method to make it available for the mixin
        @Override
        TestFile buildScript(@GroovyBuildScriptLanguage String script) {
            super.buildScript(script)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

            }
        }
    
        def "pluginManagement block must come before buildScript blocks in the settings.gradle script"() {
            given:
            settingsFile << """
                buildScript {}
                pluginManagement {}
            """
    
            when:
            fails 'help'
    
            then:
            failure.assertHasLineNumber(3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/DefaultGradleProject.java

    /**
     * Structurally implements {@link org.gradle.tooling.model.GradleProject} model.
     */
    public class DefaultGradleProject implements Serializable, GradleProjectIdentity {
        private final DefaultGradleScript buildScript = new DefaultGradleScript();
        private File buildDirectory;
        private File projectDirectory;
        private List<LaunchableGradleProjectTask> tasks = new LinkedList<>();
        private String name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/templates/root-project/build.gradle

    <% if (binding.hasVariable("buildScanPluginVersion") || binding.hasVariable("springDmPluginVersion")) {%>
    
    buildscript {
        repositories {
    <% if(binding.hasVariable("springDmPluginVersion")) { %>
            mavenLocal()
            mavenCentral()
    <% } %>
    <% if (binding.hasVariable("buildScanPluginVersion")) { %>
            maven {
                url 'https://repo.gradle.org/gradle/enterprise-libs-snapshots-local/'
            }
    <% } %>
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 965 bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInDynamicGroovyIntegrationTest.groovy

                }
            """
            file("buildSrc/build.gradle") << """
                compileGroovy {
                    groovyOptions.optimizationOptions.indy = $enableIndy
                }
            """
    
            buildScript("""
                apply plugin: SomePlugin
            """)
    
            when:
            configurationCacheRun("-Dsome.property=some.value")
    
            then:
            configurationCache.assertStateStored()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top