{"id":15969345,"url":"https://github.com/driver733/gradle-kotlin-setup-plugin","last_synced_at":"2026-01-20T02:48:11.094Z","repository":{"id":51125405,"uuid":"253450653","full_name":"driver733/gradle-kotlin-setup-plugin","owner":"driver733","description":"Gradle plugin for setting up Kotlin dependencies, plugins and build settings","archived":false,"fork":false,"pushed_at":"2021-05-22T12:41:38.000Z","size":221,"stargazers_count":3,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-07T03:37:26.013Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/driver733.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-06T09:23:59.000Z","updated_at":"2024-04-13T11:58:36.000Z","dependencies_parsed_at":"2022-09-07T07:42:03.779Z","dependency_job_id":null,"html_url":"https://github.com/driver733/gradle-kotlin-setup-plugin","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/driver733/gradle-kotlin-setup-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driver733%2Fgradle-kotlin-setup-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driver733%2Fgradle-kotlin-setup-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driver733%2Fgradle-kotlin-setup-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driver733%2Fgradle-kotlin-setup-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/driver733","download_url":"https://codeload.github.com/driver733/gradle-kotlin-setup-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/driver733%2Fgradle-kotlin-setup-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28594958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-07T19:23:52.106Z","updated_at":"2026-01-20T02:48:11.080Z","avatar_url":"https://github.com/driver733.png","language":"Kotlin","readme":"# Gradle Kotlin Setup Plugin\n\n[![Build](https://github.com/driver733/gradle-kotlin-setup-plugin/workflows/Build/badge.svg?branch=master)](https://github.com/driver733/gradle-kotlin-setup-plugin/actions?query=workflow%3ABuild+branch%3Amaster)\n[![Gradle Plugin Portal](https://img.shields.io/maven-metadata/v?label=Gradle%20Plugin%20Portal\u0026metadataUrl=https%3A%2F%2Fplugins.gradle.org%2Fm2%2Fcom%2Fdriver733%2Fgradle-kotlin-setup-plugin%2Fcom.driver733.gradle-kotlin-setup-plugin.gradle.plugin%2Fmaven-metadata.xml)](https://plugins.gradle.org/plugin/com.driver733.gradle-kotlin-setup-plugin)\n\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/driver733/gradle-kotlin-setup-plugin/actions?query=workflow%3ARelease)\n\n[![Licence](https://img.shields.io/github/license/driver733/gradle-kotlin-setup-plugin)](https://github.com/driver733/gradle-kotlin-setup-plugin/blob/master/LICENSE)\n\nThis plugin makes it easy to set up Koltin in a new project as well as in an existing Java project.\n\nMore specifically this plugin does the following:\n\n1. Applies the following gradle plugins:\n    1. `kotlin-jvm` \n    2. `KAPT`\n    3. [`detekt`](https://github.com/detekt/detekt)\n2. Adds common Kotlin dependencies, such as:\n    1. `kotlin std lib`\n    2. `kotlin-reflect`\n    3. `kotlin-coroutines`\n    4. [`kotest` (with extensions)](https://github.com/kotest/kotest)\n    5. [`mockk`](https://github.com/mockk/mockk)\n    6. [`kotlin-logging`](https://github.com/MicroUtils/kotlin-logging)\n    and [other](https://github.com/driver733/gradle-kotlin-setup-plugin/blob/master/src/main/kotlin/com/driver733/gradle-kotlin-setup-plugin.gradle.kts)\n3. Configures `kotlinOptions.jvmTarget` to match the `JavaPlugin.sourceCompatibility`\n4. Resolves the Kotlin's [incompatibility](https://stackoverflow.com/a/35530223/2441104) with Lombok by delomboking\nthe project's java source code and pointing the `JavaPlugin` compile tasks to the delomboked source code files.\n\n## Distribution\n\nThe plugin is [available](https://plugins.gradle.org/plugin/com.driver733.gradle-kotlin-setup-plugin) on the Gradle Plugins portal.\n\n## Getting Started\n\n### Requirements\n\nGradle \u003e= `v. 6.0` is required to use this plugin, because it is a\n[precompiled script plugin](https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:precompiled_plugins)\nbuilt with Gradle \u003e= `v. 6.0`.\n\n### Install\n\n#### Groovy DSL\n\nAdd this to your project's `build.gradle`:\n\n```\nplugins {\n  id \"com.driver733.gradle-kotlin-setup-plugin\" version \"6.0.3\"\n}\n```\n\n#### Kotlin DSL\n\nAdd this to your project's `build.gradle.kts`:\n\n```\nplugins {\n  id(\"com.driver733.gradle-kotlin-setup-plugin\") version \"6.0.3\"\n}\n```\n\n## Detekt\n\n[By default](https://github.com/driver733/gradle-kotlin-setup-plugin/blob/master/src/main/resources/config/detekt.yml)\ndetekt is configured to ignore errors. You can change this and other options in your build script:\n\n```kotlin\ndetekt {\n    ignoreFailures = true // Fail build on errors\n    autoCorrect = true // Automatically correct errors\n}\n```\n\n## Development\n\n### Prerequisites\n\n[JDK](https://stackoverflow.com/a/52524114/2441104) \u003e= `v. 1.6`\n\n### Build\n\n```\n./gradlew clean build\n```\n\n### CI/CD\n\n[Github actions](https://github.com/driver733/gradle-kotlin-setup-plugin/actions) is used for CI/CD.\n\n### Releases\n\nReleases to the Gradle Plugins portal are [automatically](https://github.com/driver733/gradle-kotlin-setup-plugin/actions?query=workflow%3ARelease) made on each commit on the master branch with the help of the [semantic-release](https://github.com/semantic-release/semantic-release).\n\n## Contributing\n\n1. Create an issue and describe your problem/suggestion in it.\n2. Submit a pull request with a reference to the issue that the pull request closes.\n3. I will review your changes and merge them.\n4. A new version with your changes will be released automatically right after merging.\n\n## Versioning\n\nWe use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags](https://github.com/driver733/gradle-kotlin-setup-plugin/tags). \n\n## Authors\n\n* **Mikhail [@driver733](https://www.driver733.com) Yakushin** - *Initial work*\n\nSee also the list of [contributors](https://github.com/driver733/gradle-kotlin-setup-plugin/graphs/contributors) who participated in this project.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](https://github.com/driver733/gradle-kotlin-setup-plugin/blob/master/LICENSE) file for details.\n\n## Acknowledgments\n\n* [Gradle lombok plugin](https://plugins.gradle.org/plugin/io.freefair.lombok)\n* [KengoTODA/gradle-semantic-release-plugin](https://github.com/KengoTODA/gradle-semantic-release-plugin)\n* [semantic-release](https://github.com/semantic-release/semantic-release)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdriver733%2Fgradle-kotlin-setup-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdriver733%2Fgradle-kotlin-setup-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdriver733%2Fgradle-kotlin-setup-plugin/lists"}