Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 275 for rebuild (0.18 seconds)

  1. build-logic/binary-compatibility/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin for configuring japicmp-gradle-plugin to detect binary incompatible changes"
    
    dependencies {
        api(buildLibs.japiCmpPlugin)
    
        implementation(projects.dependencyModules)
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 927 bytes
    - Click Count (0)
  2. build-logic-commons/gradle-plugin/build.gradle.kts

    import org.gradle.kotlin.dsl.support.expectedKotlinDslPluginsVersion
    
    plugins {
        `kotlin-dsl`
    }
    
    group = "gradlebuild"
    
    description = "Provides plugins used to create a Gradle plugin with Groovy or Kotlin DSL within build-logic builds"
    
    dependencies {
        compileOnly(buildLibs.develocityPlugin)
    
        api(platform(projects.buildPlatform))
    
        implementation(projects.basics)
        implementation(projects.moduleIdentity)
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 768 bytes
    - Click Count (0)
  3. build-logic-settings/build-environment/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        `kotlin-dsl`
    }
    
    description = "Provides plugins for configuring build environment"
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Jan 22 14:28:13 GMT 2025
    - 737 bytes
    - Click Count (0)
  4. build-logic-settings/architecture-docs/build.gradle.kts

     */
    
    plugins {
        `kotlin-dsl`
    }
    
    description = "Provides plugin for generating architecture documentation"
    
    group = "gradlebuild"
    
    dependencies {
        implementation(project(":build-environment"))
        implementation(buildLibs.gson)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 847 bytes
    - Click Count (0)
  5. build-logic/build.gradle.kts

            val jvmArgs = listOf(buildLogicProperties, rootProperties).map { it.getProperty("org.gradle.jvmargs") }.toSet()
            if (jvmArgs.size > 1) {
                throw GradleException("gradle.properties and build-logic/gradle.properties have different org.gradle.jvmargs " +
                    "which may cause two daemons to be spawned on CI and in IDEA. " +
                    "Use the same org.gradle.jvmargs for both builds.")
            }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Feb 09 03:14:32 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  6. architecture/build-execution-model.md

    # Build execution model
    
    At the highest level, Gradle's execution model is quite simple:
    
    Below is the protocol in some more detail:
    
    1. The client looks for a compatible idle daemon. If there isn't one, it starts a new daemon.
    2. The client connects to the idle daemon and sends it a request to do some work. If the daemon is no longer running, the client starts again.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 907 bytes
    - Click Count (0)
  7. build-logic-settings/default-settings-plugins/build.gradle.kts

    Vlad Chesnokov <******@****.***> 1769687190 +0100
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 909 bytes
    - Click Count (0)
  8. build-logic-settings/version-catalogs/build.gradle.kts

    Vlad Chesnokov <******@****.***> 1769091987 +0100
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 29 08:21:04 GMT 2026
    - 735 bytes
    - Click Count (0)
  9. dbflute_fess/build.properties

    Shinsuke Sugaya <******@****.***> 1436049991 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 180 bytes
    - Click Count (0)
  10. build-logic-commons/module-identity/build.gradle.kts

    Vlad Chesnokov <******@****.***> 1769687190 +0100
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 279 bytes
    - Click Count (0)
Back to Top