MicroUtils/build.gradle

31 lines
813 B
Groovy
Raw Normal View History

2020-09-15 12:57:41 +00:00
buildscript {
2020-11-10 06:47:47 +00:00
ext {
kotlin_version = '1.4.10'
}
2020-09-15 12:57:41 +00:00
repositories {
mavenLocal()
jcenter()
mavenCentral()
2020-10-02 18:12:06 +00:00
maven { url "https://plugins.gradle.org/m2/" }
2020-09-15 12:57:41 +00:00
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$gradle_bintray_plugin_version"
2020-10-02 14:45:16 +00:00
classpath "com.github.breadmoirai:github-release:$github_release_plugin_version"
2020-09-15 12:57:41 +00:00
}
}
2020-10-16 11:59:51 +00:00
allprojects {
repositories {
2020-10-16 13:39:18 +00:00
mavenLocal()
2020-10-16 11:59:51 +00:00
jcenter()
mavenCentral()
maven { url "https://kotlin.bintray.com/kotlinx" }
}
2020-09-15 12:57:41 +00:00
}
apply from: "./extensions.gradle"
2020-10-02 19:00:44 +00:00
apply from: "./github_release.gradle"