mirror of
https://github.com/ethauvin/kotlin-pluralizer.git
synced 2025-04-25 00:37:12 -07:00
23 lines
358 B
Groovy
23 lines
358 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenLocal()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'com.jfrog.bintray' version '1.6'
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'maven-publish'
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
apply from: 'publish.gradle'
|