Skip to content

Instantly share code, notes, and snippets.

@akshay2211
Last active October 26, 2021 12:19
Show Gist options
  • Save akshay2211/71dc30b167948d39b31551c0a82dc36a to your computer and use it in GitHub Desktop.
Save akshay2211/71dc30b167948d39b31551c0a82dc36a to your computer and use it in GitHub Desktop.
buildscript {
ext.kotlin_version = '1.5.0'
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.15.1'
}
}
allprojects {
plugins.withId("com.vanniktech.maven.publish") {
mavenPublish {
sonatypeHost = "S01"
}
}
repositories {
google()
mavenCentral()
maven { url "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven" }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment