13 lines
207 B
Groovy
13 lines
207 B
Groovy
apply plugin: 'java-library'
|
|
|
|
sourceCompatibility = 1.7
|
|
targetCompatibility = 1.7
|
|
|
|
dependencies {
|
|
|
|
api deps['support-annotations']
|
|
|
|
deps['test'].with {
|
|
implementation it['commons-io']
|
|
}
|
|
} |