10 lines
193 B
Groovy
10 lines
193 B
Groovy
|
dependencies {
|
||
|
runtime 'org.subethamail:subethasmtp-smtp:1.2'
|
||
|
runtime 'org.subethamail:subethasmtp-wiser:1.2'
|
||
|
}
|
||
|
|
||
|
task deps(type: Copy) {
|
||
|
from sourceSets.main.runtimeClasspath
|
||
|
into 'code'
|
||
|
}
|