Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getProjectVersion (0.24 sec)

  1. platforms/ide/tooling-api/buildship.gradle

    abstract class CreateBuildshipEclipseProjectTask extends DefaultTask {
    
        @InputFile
        abstract RegularFileProperty getToolingApiShadedJar()
    
        @Input
        abstract Property<String> getProjectVersion()
    
        @Inject
        protected abstract FileSystemOperations getFs()
    
        @OutputDirectory
        File projectDirectory
    
        @TaskAction
        void generateBuildshipProject() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    Note that property names usually start with a lower-case letter, but that letter is upper case in the method names. So the getter method `getProjectVersion()` corresponds to the property `projectVersion`. This convention does not apply when the name begins with at least two upper-case letters, in which case there is not change in case. For example, `getRAM()` corresponds to the property `RAM`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top