Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Balint (0.25 sec)

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.collect-failed-tasks.gradle.kts

    import org.gradle.tooling.events.task.TaskOperationResult
    import org.jlleitschuh.gradle.ktlint.tasks.GenerateReportsTask
    import java.io.Serializable
    import java.util.concurrent.CopyOnWriteArrayList
    
    /**
     * Register a build service that monitors compilation tasks and code quality tasks (Checkstyle/CodeNarc/ktlint)
     * and reports them as TeamCity build problems.
     */
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Aug 11 07:01:27 GMT 2022
    - 2.3K bytes
    - Viewed (1)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.kotlin-shared-runtime.gradle.kts

    plugins {
        id("java-library")
        kotlin("jvm")
        id("gradlebuild.module-jar")
        id("gradlebuild.reproducible-archives")
        id("gradlebuild.repositories")
        id("gradlebuild.code-quality")
        id("gradlebuild.ktlint")
        id("gradlebuild.test-retry")
        id("gradlebuild.ci-reporting")
    }
    
    java {
        configureJavaToolChain()
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Oct 03 15:32:00 GMT 2023
    - 652 bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ktlint.gradle.kts

     * See the License for the specific language governing permissions and
     * 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")
        }
    
    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)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts

    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")
        id("gradlebuild.test-retry")
    }
    
    java.configureJavaToolChain()
    
    dependencies {
        api(platform("gradlebuild:build-platform"))
    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)
  5. .github/workflows/submit-github-dependency-graph.yml

            DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: ':docs|:internal-performance-testing|:enterprise-plugin-performance|:performance|:internal-integ-testing'
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 09:18:51 GMT 2024
    - 1.1K bytes
    - Viewed (2)
  6. build-logic-commons/build-platform/build.gradle.kts

            api("org.jetbrains.kotlin:kotlin-gradle-plugin") { version { strictly(kotlinVersion) } }
            api(kotlin("compiler-embeddable")) { version { strictly(kotlinVersion) } }
            api("org.jlleitschuh.gradle:ktlint-gradle:10.3.0")
            api("org.gradle.kotlin:gradle-kotlin-dsl-conventions:0.9.0")
            api("com.autonomousapps:dependency-analysis-gradle-plugin:1.31.0")
            api("com.squareup.okio:okio:3.4.0") {
    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)
  7. .teamcity/README.md

    You also need to run `mvn clean verify` with Java 8 before committing changes.
    
    If you have ktlint errors, you can automatically fix them by running `mvn com.github.gantsign.maven:ktlint-maven-plugin:1.1.1:format`.
    
    ## How the configuration works
    
    We use Kotlin portable DSL to store TeamCity configuration, which means you can easily create a new pipeline
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Mar 06 23:02:25 GMT 2024
    - 4K bytes
    - Viewed (0)
  8. build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts

    import gradlebuild.performance.tasks.PerformanceTest
    import gradlebuild.testcleanup.extension.TestFilesCleanupBuildServiceRootExtension
    import gradlebuild.binarycompatibility.JapicmpTask
    import org.jlleitschuh.gradle.ktlint.tasks.GenerateReportsTask
    
    if (BuildEnvironment.isCiServer && project.name != "gradle-kotlin-dsl-accessors") {
        val globalExtension = rootProject.extensions.getByType<TestFilesCleanupBuildServiceRootExtension>()
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jan 20 15:24:41 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  9. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/SourceFileHeader.kt

        "redundant_projection",
        "RemoveRedundantBackticks",
        "ObjectPropertyName",
        "deprecation"
    )
    @file:org.gradle.api.Generated${if (isIncubating) "\n@file:org.gradle.api.Incubating" else ""}
    
    /* ktlint-disable */
    
    package $packageName
    """
    
    
    const val kotlinDslPackageName = "org.gradle.kotlin.dsl"
    
    
    const val kotlinDslPackagePath = "org/gradle/kotlin/dsl"
    
    
    const val licenseHeader = """/*
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sun Nov 12 16:16:08 GMT 2023
    - 2K bytes
    - Viewed (0)
  10. .teamcity/pom.xml

                    <version>2.22.1</version>
                </plugin>
                <plugin>
                    <groupId>com.github.gantsign.maven</groupId>
                    <artifactId>ktlint-maven-plugin</artifactId>
                    <version>1.11.1</version>
                    <executions>
                        <execution>
                            <id>check</id>
                            <goals>
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 8.4K bytes
    - Viewed (0)
Back to top