buildscript { repositories { jcenter() maven { url "https://plugins.gradle.org/m2/" } } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version" classpath "com.github.breadmoirai:github-release:$github_release_plugin_version" } } allprojects { repositories { mavenCentral() jcenter() mavenLocal() maven { url 'https://jitpack.io' } } } apply from: "${rootProject.projectDir.path}${File.separator}github_release.gradle"