Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for projectVersion (0.35 sec)

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

            new File(projectDirectory, '.classpath').text = getDotClasspathText(jarFile.name)
        }
    
        private String calculateManifest(String projectVersion, File jar) {
            def bundleVersion = getBundleVersion(projectVersion)
            def qualifier = new Date().format('yyyyMMddkkmm')
            def packageNames = getPackageNames(jar)
            def packageExports = getPackageExports(packageNames, bundleVersion)
    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/samples/writing-tasks/task-with-arguments/common/project-info/src/main/java/com/example/ProjectInfoTask.java

            switch (format) {
                case PLAIN:
                    System.out.println(projectName + ":" + projectVersion);
                    break;
                case JSON:
                    System.out.println("{\n" +
                        "    \"projectName\": \"" + projectName + "\"\n" +
                        "    \"version\": \"" + projectVersion + "\"\n}");
                    break;
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. okcurl/src/main/resources-templates/okcurl-version.properties

    version=${projectVersion}...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 26 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/organizingGradleProjects/customGradleDistribution/groovy/build.gradle

        description = 'Builds custom Gradle distribution and bundles initialization scripts.'
    
        dependsOn downloadGradle
    
        def projectVersion = project.version
        archiveFileName = downloadGradle.gradleVersion.map { gradleVersion ->
            "mycompany-gradle-${gradleVersion}-${projectVersion}-bin.zip"
        }
    
        from zipTree(downloadGradle.destinationFile)
    
        from('src/init.d') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 797 bytes
    - Viewed (0)
  5. okhttp/src/main/kotlinTemplates/okhttp3/internal/-InternalVersion.kt

     * limitations under the License.
     */
    @file:Suppress("ktlint:standard:filename")
    
    package okhttp3.internal
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 723 bytes
    - Viewed (0)
  6. okcurl/build.gradle.kts

    }
    
    val copyResourcesTemplates = tasks.register<Copy>("copyResourcesTemplates") {
      from("src/main/resources-templates")
      into("$buildDir/generated/resources-templates")
      expand("projectVersion" to "${project.version}")
      filteringCharset = Charsets.UTF_8.toString()
    }
    
    kotlin {
      sourceSets {
        val main by getting {
          resources.srcDir(copyResourcesTemplates.get().outputs)
        }
      }
    }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. okhttp/build.gradle.kts

    // Build & use okhttp3/internal/-InternalVersion.kt
    val copyKotlinTemplates = tasks.register<Copy>("copyKotlinTemplates") {
      from("src/main/kotlinTemplates")
      into("$buildDir/generated/sources/kotlinTemplates")
      expand("projectVersion" to project.version)
      filteringCharset = Charsets.UTF_8.toString()
    }
    
    // Build & use okhttp3/internal/idn/IdnaMappingTableInstance.kt
    val generateIdnaMappingTableConfiguration: Configuration by configurations.creating
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                }
    """
    
            when:
            succeeds ":impl:check"
    
            then:
            executedAndNotSkipped ":api:build"
        }
    
        void "can replace project dependency #projectGroup:api:#projectVersion with external dependency org.utils:api:1.5"() {
            mavenRepo.module("org.utils", "api", '1.5').publish()
    
            createDirs("api", "impl")
            settingsFile << 'include "api", "impl"'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  9. 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`.
    
    [source,groovy]
    .Examples
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ProjectVersion3.java

     * model objects implement this interface. </p>
     *
     * @since 1.0-milestone-3
     */
    public interface ProjectVersion3 {
        /**
         * @since 1.0-milestone-3
         */
        String getPath();
    
        /**
         * @since 1.0-milestone-3
         */
        String getName();
    
        /**
         * @since 1.0-milestone-3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top