Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 542 for Bradley (0.18 sec)

  1. build-logic/idea/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin that configures IntelliJ's idea-ext plugin"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradle.plugin.org.jetbrains.gradle.plugin.idea-ext:gradle-idea-ext")
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 297 bytes
    - Viewed (0)
  2. .github/workflows/build.yml

              distribution: 'zulu'
              java-version: 17
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Build okcurl
            run: ./gradlew okcurl:nativeImage
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Build ConsoleLauncher
            run: ./gradlew -PgraalBuild=true native-image-tests:nativeImage
    
          - name: Run Checks
    Others
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Apr 15 01:51:50 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides plugins that create update tasks for the Gradle build"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("com.google.code.gson:gson")
        implementation("org.jsoup:jsoup")
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 355 bytes
    - Viewed (0)
  4. buildSrc/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        `kotlin-dsl`
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
      implementation("biz.aQute.bnd:biz.aQute.bnd.gradle:6.4.0")
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Wed Oct 18 20:40:57 GMT 2023
    - 746 bytes
    - Viewed (0)
  5. build-logic/dependency-modules/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to minify and correct metadata for dependencies used by Gradle"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("com.google.code.gson:gson")
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 276 bytes
    - Viewed (0)
  6. .github/workflows/contributor-pr.yml

      cancel-in-progress: true
    
    
    env:
      # Set the GRADLE_ENTERPRISE_ACCESS_KEY so that Gradle Build Scans are generated
      GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions:
      contents: read
    
    jobs:
      build:
    Others
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Tue Apr 16 09:36:52 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  7. build-logic/cleanup/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin that cleans up after executing tests"
    
    errorprone {
        disabledChecks.addAll(
            "CatchAndPrintStackTrace", // 1 occurrences
            "DefaultCharset", // 3 occurrences
            "JavaTimeDefaultTimeZone", // 1 occurrences
            "StringCaseLocaleUsage", // 2 occurrences
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Fri Jan 26 14:59:27 GMT 2024
    - 600 bytes
    - Viewed (0)
  8. build-logic-commons/settings.gradle.kts

     * limitations under the License.
     */
    
    dependencyResolutionManagement {
        repositories {
            gradlePluginPortal()
        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    // Shared basics for all
    include("basics")
    
    // Platform: defines shared dependency versions
    include("build-platform")
    
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Fri Jan 12 16:22:45 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  9. .idea/scopes/Gradle_public_API.xml

    dle.concurrent..*||src:org.gradle.deployment..*||src:org.gradle.external.javadoc..*||src:org.gradle.ide..*||src:org.gradle.ivy..*||src:org.gradle.jvm..*||src:org.gradle.language..*||src:org.gradle.maven..*||src:org.gradle.nativeplatform..*||src:org.gradle.normalization..*||src:org.gradle.platform..*||src:org.gradle.plugin.devel..*||src:org.gradle.plugin.use..*||src:org.gradle.plugin.management..*||src:org.gradle.plugins..*||src:org.gradle.process..*||src:org.gradle.testfixtures..*||src:org.gradl...
    XML
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Fri Sep 29 12:25:53 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  10. 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 17 11:36:08 GMT 2024
    - Last Modified: Sun Oct 01 11:07:15 GMT 2023
    - 1.1K bytes
    - Viewed (0)
Back to top