Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 218 for Bradley (0.16 sec)

  1. build-logic-commons/build-platform/build.gradle.kts

    dependencies {
        constraints {
            api("org.gradle.guides:gradle-guides-plugin:0.23")
            api("org.apache.ant:ant:1.10.13") // Bump the version brought in transitively by gradle-guides-plugin
            api("com.gradle:develocity-gradle-plugin:3.17.2") // Sync with `settings.gradle.kts`
            api("com.gradle.publish:plugin-publish-plugin:1.2.1")
            api("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext:1.0.1")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  2. 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("me.champeau.gradle:japicmp-gradle-plugin")
    
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation("com.google.code.gson:gson")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 905 bytes
    - Viewed (0)
  3. build-logic/documentation/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate Gradle's DSL reference, User Manual and Javadocs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":build-update-utils"))
    
        implementation("com.github.javaparser:javaparser-core")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.repositories.gradle.kts

     */
    
    repositories {
        maven {
            name = "Gradle public repository"
            url = uri("https://repo.gradle.org/gradle/public")
            content {
                includeGroup("net.rubygrapefruit")
                includeModule("flot", "flot")
                includeModule("org.gradle", "gradle-tooling-api")
                includeModule("org.gradle.buildtool.internal", "configuration-cache-report")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 05 14:05:00 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ktlint.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("org.gradle.kotlin-dsl.ktlint-convention")
    }
    
    tasks {
        runKtlintCheckOverKotlinScripts {
            // Only check the build files, not all *.kts files in the project
            includes += listOf("*.gradle.kts")
        }
    
        withType<Test>().configureEach {
            shouldRunAfter(ktlintCheck)
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Oct 01 11:07:15 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  6. build-logic/cleanup/src/main/kotlin/gradlebuild.cleanup.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradlebuild.basics.repoRoot
    import gradlebuild.cleanup.services.DaemonTracker
    
    gradle.sharedServices.registerIfAbsent("daemonTracker", DaemonTracker::class) {
        parameters.rootProjectDir = repoRoot()
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jan 20 15:24:40 GMT 2023
    - 828 bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts

     * limitations under the License.
     */
    import gradlebuild.commons.configureJavaToolChain
    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    
    plugins {
        id("java-library")
        id("org.gradle.kotlin.kotlin-dsl") // this is 'kotlin-dsl' without version
        id("gradlebuild.code-quality")
        id("gradlebuild.ktlint")
        id("gradlebuild.ci-reporting")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Oct 03 15:32:00 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts

            dependsOn(configureWrapperTaskName)
            group = "wrapper"
        }
    
        tasks.register(configureWrapperTaskName) {
            doLast {
                val jsonText = URL("https://services.gradle.org/versions/$label").readText()
                val versionInfo = Gson().fromJson(jsonText, VersionDownloadInfo::class.java)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  9. .cm/misc_labels.cm

    build_logic_files:
      - 'build.gradle.kts'
      - 'build.gradle'
      - 'settings.gradle.kts'
      - 'settings.gradle'
      - 'gradle.wrapper.jar'
      - 'gradle-wrapper.properties'
      - 'gradlew'
      - 'gradlew.bat'
      - 'verification-keyring.keys'
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3K bytes
    - Viewed (0)
  10. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

    plugins {
        `java-base`
    }
    
    val moduleIdentity = extensions.create<ModuleIdentityExtension>("moduleIdentity")
    
    group = "org.gradle"
    version = collectVersionDetails(moduleIdentity)
    
    fun Project.collectVersionDetails(moduleIdentity: ModuleIdentityExtension): String {
        moduleIdentity.baseName.convention("gradle-$name")
    
        val baseVersion = trimmedContentsOfFile("version.txt")
    
        val finalRelease = buildFinalRelease
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.9K bytes
    - Viewed (0)
Back to top