You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://maven.google.com/' }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:7.4.0'
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20"
|
|
|
|
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.8.10"
|
|
|
|
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.18.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://maven.google.com/' }
|
|
|
|
}
|
|
|
|
// use new Sonatype server for mavenCentral publishing
|
|
|
|
plugins.withId("com.vanniktech.maven.publish") {
|
|
|
|
mavenPublish {
|
|
|
|
sonatypeHost = "S01"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|