mirror of https://github.com/pf4j/pf4j.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
637 B
28 lines
637 B
buildscript { |
|
ext.kotlin_version = '1.1.2-2' |
|
|
|
repositories { |
|
mavenCentral() |
|
} |
|
dependencies { |
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
|
} |
|
} |
|
|
|
apply plugin: 'kotlin' |
|
apply plugin: 'kotlin-kapt' |
|
|
|
repositories { |
|
mavenCentral() |
|
} |
|
|
|
dependencies { |
|
compileOnly project(':api') |
|
compileOnly(group: 'org.pf4j', name: 'pf4j', version: "${pf4jVersion}") { |
|
exclude group: "org.slf4j" |
|
} |
|
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5' |
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version" |
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.+' |
|
}
|
|
|