mirror of
https://github.com/ethauvin/kotlin-pluralizer.git
synced 2025-04-25 00:37:12 -07:00
32 lines
827 B
Groovy
32 lines
827 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.0.3'
|
|
|
|
ext {
|
|
ext_groupId = 'com.cesarferreira'
|
|
ext_artifactId = 'kotlin-pluralizer'
|
|
ext_version = '0.2.4'
|
|
ext_url = 'https://github.com/cesarferreira/kotlin-pluralizer'
|
|
ext_vcsUrl = 'https://github.com/cesarferreira/kotlin-pluralizer.git'
|
|
ext_description = 'Kotlin extension to pluralize and singularize strings'
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.1.3'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|