forked from Speiger/Primitive-Collections
16 lines
190 B
Groovy
16 lines
190 B
Groovy
|
plugins {
|
||
|
id 'java-library'
|
||
|
}
|
||
|
|
||
|
tasks.withType(JavaCompile) {
|
||
|
options.encoding = 'UTF-8'
|
||
|
}
|
||
|
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation 'junit:junit:4.12'
|
||
|
}
|