11 lines
252 B
Groovy
11 lines
252 B
Groovy
apply plugin: 'java-library'
|
|
|
|
group = "com.rometools"
|
|
|
|
apply from: '../build.gradle'
|
|
|
|
dependencies {
|
|
implementation 'org.slf4j:slf4j-api:1.7.16'
|
|
testImplementation 'junit:junit:4.12'
|
|
testImplementation 'org.hamcrest:hamcrest-library:1.3'
|
|
}
|