Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for projectC (0.34 sec)

  1. maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-property-with-project-expressions.xml

      <profiles>
    
        <profile>
          <id>property-name-project-version</id>
          <activation>
            <property>
              <name>${project.version}</name>
            </property>
          </activation>
        </profile>
        <profile>
          <id>property-value-project-version</id>
          <activation>
            <property>
              <name>project.version</name>
              <value>${project.version}</value>
            </property>
          </activation>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

        }
    
        private
        fun applyProjectStates(projects: List<CachedProjectState>, gradle: GradleInternal) {
            for (project in projects) {
                if (project is ProjectWithWork && project.normalizationState != null) {
                    val projectState = gradle.owner.projects.getProject(project.path)
                    projectState.mutableModel.normalization.configureFromCachedState(project.normalizationState)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-groovy/build.gradle.kts

        api(project(":jvm-services"))
        api(project(":language-java"))
        api(project(":language-jvm"))
        api(project(":problems-api"))
        api(project(":platform-base"))
        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":workers"))
        api(project(":worker-main"))
        api(project(":build-process-services"))
    
        api(libs.inject)
        api(libs.jsr305)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/build.gradle.kts

        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":base-services"))
        api(project(":core-api"))
        api(project(":core"))
        api(project(":dependency-management"))
        api(project(":file-collections"))
        api(project(":stdlib-java-extensions"))
        api(project(":logging"))
        api(project(":messaging"))
        api(project(":model-core"))
    
        api(libs.guava)
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/jvm/java-platform/build.gradle.kts

        implementation(project(":maven"))
        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
        implementation(project(":publish"))
    
        runtimeOnly(libs.groovy)
    
        integTestImplementation(testFixtures(project(":dependency-management")))
        integTestImplementation(testFixtures(project(":resources-http")))
    
        testImplementation(project(":language-java")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/native/testing-native/build.gradle.kts

        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":diagnostics"))
        api(project(":stdlib-java-extensions"))
        api(project(":language-native"))
        api(project(":model-core"))
        api(project(":native"))
        api(project(":platform-base"))
        api(project(":platform-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            Set<File> runtimeClasspath = findDependencyJars(moduleName, runtimeJarNames);
    
            String[] projects = split(properties.getProperty("projects"));
            String[] optionalProjects = split(properties.getProperty("optional"));
            return new DefaultModule(moduleName, implementationClasspath, runtimeClasspath, projects, optionalProjects);
        }
    
        private Set<File> findDependencyJars(String moduleName, String[] jarNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

            minimumPluginVersionForConfigurationCaching | true
        }
    
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "Isolated projects implies config cache")
        def "shows warning message when Develocity plugin version is used with isolated projects enabled"() {
            given:
            plugin.runtimeVersion = pluginVersion
            plugin.artifactVersion = pluginVersion
            applyPlugin()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    For example, properties loaded from `gradle.properties` are available on `Settings` or `Project` instances but not on the `Gradle` one.
    ====
    
    [[sec:configuring_projects_from_an_init_script]]
    === Configuring projects from an init script
    
    You can use an init script to configure the projects in the build.
    This works similarly to configuring projects in a multi-project build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/software/maven/build.gradle.kts

        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":dependency-management"))
        api(project(":file-collections"))
        api(project(":logging"))
        api(project(":messaging"))
        api(project(":model-core"))
        api(project(":publish"))
        api(project(":resources"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top